bullseye/lib/game_model.dart
Tony Bark 593fda0975 Adpative layout
- The desktop version has the score, ect, in the title bar area now while the mobile version remains the same
- Capitalized "bullseye"
- Used "late" keyword for certain variables
- Updated application Id
2021-05-29 12:01:35 -04:00

15 lines
332 B
Dart

class GameModel {
static const SLIDER_CONST = 50;
static const SCORE_START = 0;
static const ROUND_START = 0;
GameModel(this.target,
[this.current = SLIDER_CONST,
this.totalScore = SCORE_START,
this.round = ROUND_START]);
late int target;
late int current;
late int totalScore;
late int round;
}