11 lines
229 B
Dart
11 lines
229 B
Dart
import 'package:sense_the_rhythm/models/arrow_direction.dart';
|
|
|
|
class Note {
|
|
final double time;
|
|
final ArrowDirection direction;
|
|
double position = 0;
|
|
bool? wasHit;
|
|
|
|
Note({required this.time, required this.direction});
|
|
}
|