Files
ichni_Official/Assets/Scripts/Game/GameElements/Notes/JudgeSubmodules/FullScreenBalancedJudgeUnit.cs
SoulliesOfficial 7580c4d87c 大更
2026-03-14 03:13:10 -04:00

24 lines
577 B
C#

using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame.Beatmap;
using UnityEngine;
namespace Ichni.RhythmGame
{
public class FullScreenBalancedJudgeUnit : NoteJudgeUnit
{
#region [] Initialization
public FullScreenBalancedJudgeUnit(NoteBase note) : base(note)
{
}
#endregion
#region [] Judge Overrides
protected override GameObject GetHintImagePrefab()
{
throw new System.NotImplementedException();
}
#endregion
}
}