diff --git a/lib/game/models/booster.dart b/lib/game/models/booster.dart new file mode 100644 index 0000000..30b14d8 --- /dev/null +++ b/lib/game/models/booster.dart @@ -0,0 +1,5 @@ +// 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 }