Files
partey_workadventure/front/src/Phaser/Login/AbstractCharacterScene.ts
T
Piotr 'pwh' Hanusiak f656702bb9 merged develop
2022-03-24 14:56:42 +01:00

15 lines
519 B
TypeScript

import { ResizableScene } from "./ResizableScene";
import { PlayerTextures } from "../Entity/PlayerTextures";
import { SuperLoaderPlugin } from "../Services/SuperLoaderPlugin";
export abstract class AbstractCharacterScene extends ResizableScene {
protected playerTextures: PlayerTextures;
protected superLoad: SuperLoaderPlugin;
constructor(params: { key: string }) {
super(params);
this.playerTextures = new PlayerTextures();
this.superLoad = new SuperLoaderPlugin(this);
}
}