sense_the_rythm

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

input_direction.dart (239B)


      1 class InputDirection {
      2   bool up = false;
      3   bool down = false;
      4   bool left = false;
      5   bool right = false;
      6   
      7   /// reset all directions to false
      8   void reset() {
      9     up = false;
     10     down = false;
     11     left = false;
     12     right = false;
     13   }
     14 }