Advertisement
Azazavr

файл Игроков (к файлу pastebin.com/3Ax6ECTH)

Feb 20th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. /**
  4.  * Created by Azazavr on 20.02.2015.
  5.  */
  6. public class Player{
  7.  
  8.     private String playerName;
  9.  
  10.     public void setName (String playerName){
  11.  
  12.         this.playerName = playerName;
  13.     }
  14.  
  15.     public String getName() {
  16.         return playerName;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement