Files
rog_app/lib/model/game_instance_state.dart
Mohamed Nouffer 6f3249631f update status
2023-09-08 21:19:12 +05:30

18 lines
295 B
Dart

enum LocationState {
noGps,
notInCheckin,
withinCheckin
}
enum GameState {
notStarted,
startedNotCounted,
startedCounted,
nodeGoal
}
class GameInstanceState{
LocationState locationState = LocationState.noGps;
GameState gameState = GameState.notStarted;
}