Files
ichni_Official/Assets/Scripts/Game/GameElements/Notes/JudgeSubmodules/FullScreenBalancedJudgeUnit.cs
SoulliesOfficial d4e860fa16 initial
2025-06-03 02:42:28 -04:00

25 lines
575 B
C#

using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame.Beatmap;
using UnityEngine;
namespace Ichni.RhythmGame
{
public class FullScreenBalancedJudgeUnit : NoteJudgeUnit
{
protected override GameObject GetHintImagePrefab()
{
throw new System.NotImplementedException();
}
public FullScreenBalancedJudgeUnit(NoteBase note) : base(note)
{
}
public override NoteJudgeUnit_BM ConvertToBM()
{
throw new System.NotImplementedException();
}
}
}