lol
This commit is contained in:
parent
bf25f279c4
commit
fe712f8861
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ const TIERS: Tier[] = [
|
||||||
];
|
];
|
||||||
|
|
||||||
const START_MONEY = 6;
|
const START_MONEY = 6;
|
||||||
const START_UNLOCKED: string[] = [];
|
const START_UNLOCKED: string[] = ['Start'];
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
// --- Game State ---
|
// --- Game State ---
|
||||||
|
@ -56,7 +56,7 @@ function App() {
|
||||||
}[]>([]);
|
}[]>([]);
|
||||||
// --- Gubble Store State ---
|
// --- Gubble Store State ---
|
||||||
const [isStoreOpen, setIsStoreOpen] = useState(false);
|
const [isStoreOpen, setIsStoreOpen] = useState(false);
|
||||||
const [upgrades, setUpgrades] = useState<Upgrades>({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false });
|
const [upgrades, setUpgrades] = useState<Upgrades>({ evenDouble: false, oddDouble: false, allTripple: false, gubbleDouble: false, addFourthNumber: false, autoscratcher: false, swipeScratcher: false});
|
||||||
const [upgradeBought, setUpgradeBought] = useState(false);
|
const [upgradeBought, setUpgradeBought] = useState(false);
|
||||||
|
|
||||||
// Ref for scroll container
|
// Ref for scroll container
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue