Refactored world renderer & world controls.

This commit is contained in:
ondra
2014-04-23 16:43:41 +02:00
parent 30857951e0
commit 0860836f85
26 changed files with 503 additions and 387 deletions
@@ -0,0 +1,25 @@
package mightypork.rogue.screens.gamescreen;
import mightypork.gamecore.control.AppAccess;
import mightypork.gamecore.gui.screens.LayeredScreen;
public class ScreenGame extends LayeredScreen {
public ScreenGame(AppAccess app)
{
super(app);
addLayer(new WorldLayer(this)); //TODO with provided world
addLayer(new GameGui(this));
}
@Override
public String getName()
{
return "game_screen";
}
}