9 lines
262 B
Dart
9 lines
262 B
Dart
enum LocationState { noGps, notInCheckin, withinCheckin }
|
|
|
|
enum GameState { notStarted, startedNotCounted, startedCounted, nodeGoal }
|
|
|
|
class GameInsStatetance {
|
|
LocationState locationState = LocationState.noGps;
|
|
GameState gameState = GameState.notStarted;
|
|
}
|