Fixed bundle bugs.

This commit is contained in:
2021-09-25 23:22:05 -07:00
parent 029a4fccec
commit d4632cee31
7 changed files with 130 additions and 26 deletions

13
ts/scene/Scene.ts Normal file
View File

@ -0,0 +1,13 @@
import { Game } from "../game/Game";
export abstract class Scene {
public readonly game:Game;
constructor(game:Game) {
this.game = game;
}
abstract init():void;
abstract update():void;
abstract dispose():void;
}