remove the GameSceneInterface from LoginScene

This commit is contained in:
kharhamel 2020-04-30 19:18:35 +02:00
parent e4052a07f3
commit 62d2498e34
2 changed files with 5 additions and 15 deletions

View file

@ -6,8 +6,8 @@ import Tile = Phaser.Tilemaps.Tile;
import {ITiledMap, ITiledTileSet} from "../Map/ITiledMap";
import {cypressAsserter} from "../../Cypress/CypressAsserter";
export const GameSceneName = "GameScene";
export enum Textures {
Rock = 'rock',
Player = 'playerModel',
Map = 'map'
}
@ -32,7 +32,7 @@ export class GameScene extends Phaser.Scene implements GameSceneInterface{
constructor() {
super({
key: "GameScene"
key: GameSceneName
});
this.GameManager = gameManager;
this.Terrains = [];