mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 04:11:22 +00:00
- 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
15 lines
332 B
Dart
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;
|
|
}
|