summaryrefslogtreecommitdiff
path: root/engine/Game.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/Game.ts')
-rw-r--r--engine/Game.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/Game.ts b/engine/Game.ts
index cdd3507..19de398 100644
--- a/engine/Game.ts
+++ b/engine/Game.ts
@@ -56,8 +56,8 @@ export class Game {
this.systems.set(system.name, system);
}
- public getSystem(name: string): System | undefined {
- return this.systems.get(name);
+ public getSystem<T>(name: string): T {
+ return this.systems.get(name) as unknown as T;
}
public doGameLoop(timeStamp: number) {