Advertisement
Collzi

Pong.java

Oct 4th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. package com.collzi.pong;
  2.  
  3. import com.badlogic.gdx.Game;
  4. import com.collzi.pong.screen.GameScreen;
  5.  
  6. public class Pong extends Game{
  7.        
  8.     public void create() {
  9.         setScreen(new GameScreen());
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement