|
1 | | -import { EventSystem, EventSystemConfig } from "./events/EventSystem"; |
2 | | -import { LocalDatabase, DatabaseConfiguration } from "./database/LocalDatabase"; |
3 | | -import { AssetStorage } from "./assets/AssetStorage"; |
4 | | -import { AssetLoader, LoaderConfiguration } from "./assets/AssetLoader"; |
5 | | -import { GameStateManager } from "./GameStateManager"; |
6 | | -import { Display, DisplayConfiguration } from "./graphics/Display"; |
7 | | -import { InputDevice, InputDeviceConfig } from "./input/InputDevice"; |
8 | | -import { AudioDevice, AudioConfiguration } from "./audio/AudioDevice"; |
9 | | -import { World } from "./ecs/World"; |
10 | | -import { ComponentConstructor } from "./ecs/Component"; |
11 | | -import { JsonSchema } from "./ecs/JsonSchema"; |
12 | | -import { Entity, EntityType } from "./ecs/Entity"; |
13 | | -import { SystemConstructor } from "./ecs/System"; |
14 | | -import { GameStateConstructor } from "./GameState"; |
15 | | -import { GameCommandConstructor } from "./input/GameCommand"; |
16 | | -import { Savegame } from "./model/Savegame"; |
| 1 | +import { EventSystem, EventSystemConfig } from "@/core/events/EventSystem"; |
| 2 | +import { LocalDatabase, DatabaseConfiguration } from "@/core/database/LocalDatabase"; |
| 3 | +import { AssetStorage } from "@/core/assets/AssetStorage"; |
| 4 | +import { AssetLoader, LoaderConfiguration } from "@/core/assets/AssetLoader"; |
| 5 | +import { GameStateManager } from "@/core/GameStateManager"; |
| 6 | +import { Display, DisplayConfiguration } from "@/core/graphics/Display"; |
| 7 | +import { InputDevice, InputDeviceConfig } from "@/core/input/InputDevice"; |
| 8 | +import { AudioDevice, AudioConfiguration } from "@/core/audio/AudioDevice"; |
| 9 | +import { World } from "@/core/ecs/World"; |
| 10 | +import { ComponentConstructor } from "@/core/ecs/Component"; |
| 11 | +import { JsonSchema } from "@/core/ecs/JsonSchema"; |
| 12 | +import { Entity, EntityType } from "@/core/ecs/Entity"; |
| 13 | +import { SystemConstructor } from "@/core/ecs/System"; |
| 14 | +import { GameStateConstructor } from "@/core/GameState"; |
| 15 | +import { GameCommandConstructor } from "@/core/input/GameCommand"; |
| 16 | +import { Savegame } from "@/core/model/Savegame"; |
17 | 17 |
|
18 | 18 | export interface GameConfiguration { |
19 | 19 | id: string; |
|
0 commit comments