diff --git a/index.html b/index.html index f5db9f2..269e6e1 100644 --- a/index.html +++ b/index.html @@ -209,6 +209,21 @@ + + + + + + + + + + + + + + + diff --git a/src/systems/CharacterCustomizationSystem.js b/src/systems/CharacterCustomizationSystem.js index 1d2b857..843799c 100644 --- a/src/systems/CharacterCustomizationSystem.js +++ b/src/systems/CharacterCustomizationSystem.js @@ -15,7 +15,7 @@ * @date 2025-12-23 */ -export default class CharacterCustomizationSystem { +class CharacterCustomizationSystem { constructor(scene) { this.scene = scene; diff --git a/src/systems/MiningSystem.js b/src/systems/MiningSystem.js index 1792fdc..3ba25e6 100644 --- a/src/systems/MiningSystem.js +++ b/src/systems/MiningSystem.js @@ -16,7 +16,7 @@ * @date 2025-12-23 */ -export default class MiningSystem { +class MiningSystem { constructor(scene) { this.scene = scene; diff --git a/src/systems/PortalRepairSystem.js b/src/systems/PortalRepairSystem.js index 31836d4..a4dd458 100644 --- a/src/systems/PortalRepairSystem.js +++ b/src/systems/PortalRepairSystem.js @@ -16,7 +16,7 @@ * @date 2025-12-23 */ -export default class PortalRepairSystem { +class PortalRepairSystem { constructor(scene) { this.scene = scene; diff --git a/src/systems/TownRestorationSystem.js b/src/systems/TownRestorationSystem.js index 3e5cf53..e7c1db2 100644 --- a/src/systems/TownRestorationSystem.js +++ b/src/systems/TownRestorationSystem.js @@ -16,7 +16,7 @@ * @date 2025-12-23 */ -export default class TownRestorationSystem { +class TownRestorationSystem { constructor(scene) { this.scene = scene;