Guest User

Untitled

a guest
Dec 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. [21:20:43] Никита: class Player{
  2. protected Side side;
  3. }
  4. class Side{
  5. public static final int SIDE_GOOD =1;
  6. public static final int SIDE_NOT_GOOD = 2;
  7. private int side;
  8. //other fields
  9. public Side(int pSide){
  10. side =pSide
  11. //BLA BLA
  12. }
  13. //other methods ex: getName etc
  14. }
Add Comment
Please, Sign In to add comment