Advertisement
rooster5105

Map.Java

Oct 29th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 KB | None | 0 0
  1. package com.kfgeeks.java.Mapper;
  2. public class Map {
  3.    
  4.     private int size = 0;
  5.     private int height = 0;
  6.     private int width = 0;
  7.    
  8.     Cell[][] mapCells;
  9.  
  10.     public void setHeight(int x){
  11.         height = x;
  12.     }
  13.     public void setWidth(int x){
  14.         width = x;
  15.     }
  16.    
  17.     public int getWidth(){
  18.         return width;
  19.     }
  20.     public int getHeight(){
  21.         return height;
  22.     }
  23.    
  24.             /*This Comment Intentionally Left Blank*/                  
  25. }
  26.         /*Just trying to tidy up the close Braces*/
  27.            
  28.     /*You know...Make it look all Pretty*/
  29.        
  30. /*Before you get to........*/
  31.    
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84. /************The Very End!*/
  85.    
  86.  
  87.    
  88.    
  89.  
  90.    
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement