Files
rog_app/lib/model/game_instance_state.dart

18 lines
295 B
Dart
Raw Normal View History

2023-09-08 21:19:12 +05:30
enum LocationState {
noGps,
notInCheckin,
withinCheckin
}
enum GameState {
notStarted,
startedNotCounted,
startedCounted,
nodeGoal
}
class GameInstanceState{
LocationState locationState = LocationState.noGps;
GameState gameState = GameState.notStarted;
}