Files
rog_app/lib/model/game_state_instance.dart
Mohamed Nouffer 0e2a8f89f3 optimized
2023-10-06 16:25:21 +05:30

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;
}