删除文件 Assets/scripts/gamePlay_gameplay/BaseNote.cs

This commit is contained in:
Jiangqvweihuan
2025-07-20 02:59:20 +00:00
committed by Gitee
parent 450ef0f8a0
commit 55583204df
@@ -1,18 +0,0 @@
using UnityEngine;
public abstract class BaseNote : MonoBehaviour
{
public int TrackIndex { get; protected set; }
public string NoteColor { get; protected set; }
public float Speed { get; protected set; }
protected float hitTime;
public virtual void Initialize(int trackIndex, string noteColor, float speed, float hitTime)
{
TrackIndex = trackIndex;
NoteColor = noteColor;
Speed = speed;
this.hitTime = hitTime;
}
}