Advertisement
KillianMills

Player.java

Nov 11th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1.  class Player{
  2.         int playerLocation;
  3.         int playerID;
  4.        
  5.         Player(int playerLocation, int playerID){
  6.                 this.playerLocation=playerLocation;
  7.                 this.playerID=playerID;
  8.         }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement