public GameManager(int width, int height, int tileSide) { Resources.Setup(); currentState = new MenuState(this); this.width = width; this.height = height; this.tileSide = tileSide; }
public void BeginGame() { currentState = new IngameState(width, height, tileSide); }