Fixed bundle bugs.
This commit is contained in:
13
ts/scene/Scene.ts
Normal file
13
ts/scene/Scene.ts
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user