Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. package thwack;
  2.  
  3. import com.badlogic.gdx.math.Vector2;
  4.  
  5. public interface Constants {
  6.    
  7.     float PIXELS_PER_METER = 32;
  8.     float WORLD_WIDTH_METERS = 100F;
  9.     float WORLD_HEIGHT_METERS = 100F;
  10.    
  11.     Vector2 LEFT = new Vector2(-1, 0);
  12.     Vector2 RIGHT = new Vector2(1, 0);
  13.     Vector2 UP = new Vector2(0, 1);
  14.     Vector2 DOWN = new Vector2(0, -1);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement