mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 12:21:21 +00:00
15 lines
316 B
Dart
15 lines
316 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]);
|
|
|
|
int? target;
|
|
int? current;
|
|
int? totalScore;
|
|
int? round;
|
|
}
|