Changes in / [54e0965:7f693b4] in advance-wars


Ignore:
Location:
src/com/example
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • src/com/example/advancewars/Map.java

    r54e0965 r7f693b4  
    22
    33import android.graphics.Canvas;
    4 import android.graphics.Point;
    54
    65public class Map {
     
    3635                                grid[x][y].draw(c, xStart+50*x, yStart+50*y);
    3736        }
    38        
    39         public Tile getTile(Point point)
    40         {
    41                 return grid[point.x][point.y];
    42         }
    4337}
  • src/com/example/game/Unit.java

    r54e0965 r7f693b4  
    1111               
    1212        }
    13         public enum Type
    14         {
    15                 LAND,SEA
    16         }
    17 
    18         public Type type;
    19         public Player owner;
    20        
    2113        public int maxHealth;
    2214        public int currentHealth;
Note: See TracChangeset for help on using the changeset viewer.