Advertisement
Collzi

PongDesktop.java

Oct 4th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package com.collzi.pong;
  2.  
  3. import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
  4.  
  5. public class PongDesktop {
  6.    
  7.     public static final int WIDTH = 720;
  8.     public static final int HEIGHT = 500;
  9.    
  10.     public static void main (String[] args) {
  11.         new LwjglApplication(new Pong(), "Pong!", WIDTH, HEIGHT, true);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement