Advertisement
Guest User

Piece.java

a guest
May 19th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.12 KB | None | 0 0
  1. public class Piece {
  2.     int type;
  3.     int x;
  4.     int y;
  5.     int rotate;
  6.  
  7.     public Piece(int type, int x, int y, int rotate) {
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement