summaryrefslogtreecommitdiff
path: root/lib/models/note.dart
blob: bcc6ac6df17fa33aa406e8df53f125d1c35c2532 (plain)
1
2
3
4
5
6
7
8
9
10
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});
}