diff options
author | Orangerot <purple@orangerot.dev> | 2024-12-29 19:15:16 +0100 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-12-29 19:15:16 +0100 |
commit | acebb2431c43108167a073e889a61147cc526edd (patch) | |
tree | 34d90aa629058bee534bafe3997481a5f6b990b8 /lib/arrows.dart | |
parent | f577670d7564b24dfe8cc247459670a2d7ef5bab (diff) |
feat: show whether you hit or missed the beat
Diffstat (limited to 'lib/arrows.dart')
-rw-r--r-- | lib/arrows.dart | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arrows.dart b/lib/arrows.dart index b4779f7..ff53e02 100644 --- a/lib/arrows.dart +++ b/lib/arrows.dart @@ -15,7 +15,7 @@ class Note { final double time; final ArrowDirection direction; double position = 0; - bool wasHit = false; + bool? wasHit; Note({required this.time, required this.direction}); } |