Files
rog_app/lib/model/game_state_instance.dart

9 lines
262 B
Dart
Raw Normal View History

2023-10-06 16:25:21 +05:30
enum LocationState { noGps, notInCheckin, withinCheckin }
enum GameState { notStarted, startedNotCounted, startedCounted, nodeGoal }
class GameInsStatetance {
LocationState locationState = LocationState.noGps;
GameState gameState = GameState.notStarted;
}