Changes in / [54e0965:7f693b4] in advance-wars
- Location:
- src/com/example
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/com/example/advancewars/Map.java
r54e0965 r7f693b4 2 2 3 3 import android.graphics.Canvas; 4 import android.graphics.Point;5 4 6 5 public class Map { … … 36 35 grid[x][y].draw(c, xStart+50*x, yStart+50*y); 37 36 } 38 39 public Tile getTile(Point point)40 {41 return grid[point.x][point.y];42 }43 37 } -
src/com/example/game/Unit.java
r54e0965 r7f693b4 11 11 12 12 } 13 public enum Type14 {15 LAND,SEA16 }17 18 public Type type;19 public Player owner;20 21 13 public int maxHealth; 22 14 public int currentHealth;
Note:
See TracChangeset
for help on using the changeset viewer.