Is there a way to get the timer from standard game? When I made my app in simplegame I used the timer to render some objects and now am using standardgame and do not know what to do.
The timer in StandardGame is just a reference to the singleton instance of Timer.
So you can get it by calling Timer.getTimer().
ah thanks, I was wondering if that was the case