game runner

This commit is contained in:
Martin
2022-12-07 10:47:46 +01:00
parent 669ed8cd81
commit 9884bc4090
24 changed files with 292 additions and 37 deletions

View File

@@ -0,0 +1,17 @@
export class UserData {
public soundVolume = 0;
public musicVolume = 0;
public game = new GameData();
}
export class GameData {
public goldCoins = 0;
public metaUpgrades = new MetaUpgradesData();
}
export class MetaUpgradesData {
public maxHpLevel = 0;
public overallDamageLevel = 0;
public projectilePiercingLevel = 0;
public movementSpeedLevel = 0;
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "7431ff7c-480c-4474-9434-654eda0a1a08",
"files": [],
"subMetas": {},
"userData": {}
}