note.dart (229B)
1 import 'package:sense_the_rhythm/models/arrow_direction.dart'; 2 3 class Note { 4 final double time; 5 final ArrowDirection direction; 6 double position = 0; 7 bool? wasHit; 8 9 Note({required this.time, required this.direction}); 10 }