Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package core;
  7.  
  8. /**
  9. *
  10. * @author Steven
  11. */
  12. public class Constants {
  13.  
  14. public static final int CARRIER_LENGTH=5;
  15. public static final int BATTLESHIP_LENGTH=4;
  16. public static final int SUBMARINE_LENGTH=3;
  17. public static final int DESTROYER_LENGTH=3;
  18. public static final int PATROL_BOAT_LENGTH=2;
  19.  
  20. public static final int CARRIER=0;
  21. public static final int BATTLESHIP=0;
  22. public static final int SUBMARINE=0;
  23. public static final int DESTROYER=0;
  24. public static final int PATROL=0;
  25.  
  26. public static final int HORIZONTAL=0;
  27. public static final int VERTICAL=0;
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement