Rev 268 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.pingk;
import com.gebauz.Bauzoid.app.BauzoidApp;
public class PingkApp
extends BauzoidApp
{
public PingkApp
()
{
}
@
Override
public void initGame
()
{
// Global initializations
mGame.
setCustomServices(new PingkCustomServices
(mGame
));
// TODO: read initial game state from config/XML
mGame.
getGameStateManager().
switchTo("com.gebauz.pingk.gamestates.MainGameState");
}
@
Override
public void exitGame
()
{
}
}