Advertisement
Guest User

Box2dTry.java

a guest
Aug 28th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. package com.sholnk.box2dtry;
  2.  
  3. import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
  4.  
  5. public class Box2dTry {
  6.  
  7.     public static void main(String[] args) {
  8.         new LwjglApplication(new Box2dGame(), "Box2d game", 800, 600);
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement