sense_the_rythm

rythm game for ESense Earable
git clone git://source.orangerot.dev:/university/sense_the_rythm.git
Log | Files | Refs | README | LICENSE

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 }