SHARE
TWEET

Untitled

a guest Sep 24th, 2014 144 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class TombStone extends Game {
  2.         public SpriteBatch batch;
  3.         public BitmapFont font;
  4.        
  5.        
  6.         //Calls the Assets to be implemented in other classes
  7.         public Assets assets = new Assets();
  8.        
  9.         @Override
  10.         public void create () {
  11.                  
  12.                
  13.                 batch = new SpriteBatch();
  14.                 font  = new BitmapFont();
  15.                
  16.                 this.setScreen(new MainScreen(this));
  17.                
  18.                
  19.         }
  20.  
  21.         @Override
  22.         public void render () {
  23.                 super.render();
  24.                
  25.         }
  26.  
  27.         @Override
  28.         public void dispose() {
  29.                 // TODO Auto-generated method stub
  30.                 batch.dispose();
  31.                 font.dispose();
  32.         }
  33.        
  34.        
  35. }
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. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top