SHARE
TWEET
Untitled
a guest
Sep 24th, 2014
144
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- public class TombStone extends Game {
- public SpriteBatch batch;
- public BitmapFont font;
- //Calls the Assets to be implemented in other classes
- public Assets assets = new Assets();
- @Override
- public void create () {
- batch = new SpriteBatch();
- font = new BitmapFont();
- this.setScreen(new MainScreen(this));
- }
- @Override
- public void render () {
- super.render();
- }
- @Override
- public void dispose() {
- // TODO Auto-generated method stub
- batch.dispose();
- font.dispose();
- }
- }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
