Advertisement
Guest User

Untitled

a guest
Feb 26th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. import com.badlogic.gdx.Game;
  2.  
  3.  
  4. /**
  5.  * AutoGenerated Class by FP4G
  6.  * *Do not modify*
  7.  *
  8.  */
  9. public class Prueba
  10.     extends Game
  11. {
  12.  
  13.     public final static int Width = 640;
  14.     public final static int Height = 480;
  15.     private GameLoop _GameLoop;
  16.  
  17.     @Override
  18.     public void create() {
  19.         _GameLoop = new GameLoop();
  20.         setScreen(_GameLoop);
  21.     }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement