summaryrefslogtreecommitdiff
path: root/lib/arrows.dart
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-12-29 19:15:16 +0100
committerOrangerot <purple@orangerot.dev>2024-12-29 19:15:16 +0100
commitacebb2431c43108167a073e889a61147cc526edd (patch)
tree34d90aa629058bee534bafe3997481a5f6b990b8 /lib/arrows.dart
parentf577670d7564b24dfe8cc247459670a2d7ef5bab (diff)
feat: show whether you hit or missed the beat
Diffstat (limited to 'lib/arrows.dart')
-rw-r--r--lib/arrows.dart2
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});
}