Files
godot-4-key-rhythm-game/rhythm_game/note/visual/note_visual.gd

11 lines
147 B
GDScript3
Raw Normal View History

@abstract class_name NoteVisual extends Node2D
enum TYPE {
TAP = 0,
HOLD = 1
}
@abstract func reset() -> void
@abstract func in_use() -> bool