update status
This commit is contained in:
18
lib/model/game_instance_state.dart
Normal file
18
lib/model/game_instance_state.dart
Normal file
@ -0,0 +1,18 @@
|
||||
enum LocationState {
|
||||
noGps,
|
||||
notInCheckin,
|
||||
withinCheckin
|
||||
}
|
||||
|
||||
enum GameState {
|
||||
notStarted,
|
||||
startedNotCounted,
|
||||
startedCounted,
|
||||
nodeGoal
|
||||
}
|
||||
|
||||
|
||||
class GameInstanceState{
|
||||
LocationState locationState = LocationState.noGps;
|
||||
GameState gameState = GameState.notStarted;
|
||||
}
|
||||
Reference in New Issue
Block a user