Advertisement
Azazavr

Player (2 of 4)

Mar 9th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package Test;
  2.  
  3. public class Player{
  4.  
  5.    private int choice;
  6.  
  7.         public void setChoice(int choice){
  8.             this.choice = choice;
  9.         }
  10.  
  11.     public int getChoice(){
  12.         return choice;
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement