From 55583204dfc6c9f1aad62a5cd3a44dd3522aacbb Mon Sep 17 00:00:00 2001 From: Jiangqvweihuan <15987148+jiangqvweihuan@user.noreply.gitee.com> Date: Sun, 20 Jul 2025 02:59:20 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20Assets/s?= =?UTF-8?q?cripts/gamePlay=5Fgameplay/BaseNote.cs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/scripts/gamePlay_gameplay/BaseNote.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Assets/scripts/gamePlay_gameplay/BaseNote.cs diff --git a/Assets/scripts/gamePlay_gameplay/BaseNote.cs b/Assets/scripts/gamePlay_gameplay/BaseNote.cs deleted file mode 100644 index d1336b4b..00000000 --- a/Assets/scripts/gamePlay_gameplay/BaseNote.cs +++ /dev/null @@ -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; - } - -}