Added asset manager.

This commit is contained in:
2021-09-26 00:42:35 -07:00
parent 3a94e307d4
commit 4a57adf427
5 changed files with 49 additions and 9 deletions

View File

@ -1,6 +1,7 @@
import { IAssetOwner } from "../asset/AssetManager";
import { Game } from "../game/Game";
export abstract class Scene {
export abstract class Scene implements IAssetOwner {
public readonly game:Game;
constructor(game:Game) {