Rev 1080 |
Rev 1520 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package com.gebauz.burutaru;
import com.gebauz.bauzoid.app.CustomServices;
import com.gebauz.bauzoid.game.Game;
/** Provides the global font, etc. */
public class BurutaruCustomServices
extends CustomServices
{
static BurutaruCustomServices mInstance =
null;
public BurutaruCustomServices
(Game game
)
{
super(game
);
mInstance =
this;
}
@
Override
public void init
()
{
}
@
Override
public void exit
()
{
}
@
Override
public void update
(float deltaTime
)
{
}
@
Override
public void render
()
{
}
public static BurutaruCustomServices getInstance
()
{
return mInstance
;
}
}