Sense_the_Rhythm/lib/models/input_direction.dart
2025-01-14 17:35:24 +01:00

15 lines
239 B
Dart

class InputDirection {
bool up = false;
bool down = false;
bool left = false;
bool right = false;
/// reset all directions to false
void reset() {
up = false;
down = false;
left = false;
right = false;
}
}