2007-03-07 21:42:12 +00:00
|
|
|
package ei.game;
|
|
|
|
|
|
2007-03-12 19:13:08 +00:00
|
|
|
import ei.engine.LWJGLGameWindow;
|
|
|
|
|
import ei.engine.state.GameStateManager;
|
|
|
|
|
import ei.game.gamestate.InGameState;
|
2007-03-07 21:42:12 +00:00
|
|
|
|
2007-03-12 19:13:08 +00:00
|
|
|
public class EI extends LWJGLGameWindow{
|
|
|
|
|
public static void main(String[] args){
|
|
|
|
|
new EI();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EI() {
|
|
|
|
|
super("EI");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void init(){
|
|
|
|
|
GameStateManager.getInstance().addState(new InGameState("InGameState"));
|
|
|
|
|
GameStateManager.getInstance().setActive("InGameState");
|
|
|
|
|
}
|
2007-03-07 21:42:12 +00:00
|
|
|
}
|