6 lines
230 B
Dart
6 lines
230 B
Dart
// lib/game/models/booster.dart
|
|
|
|
/// The three boosters the player can earn and spend. Pure model so the data
|
|
/// and state layers can both reference it without a Flutter dependency.
|
|
enum BoosterType { hammer, shuffle, lineBomb }
|