Changeset b97a618 in advance-wars for src/com/medievaltech/game/Tile.java
- Timestamp:
- Feb 2, 2011, 4:51:03 PM (14 years ago)
- Branches:
- master
- Children:
- 78d3c6f
- Parents:
- 6a639f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/com/medievaltech/game/Tile.java
r6a639f7 rb97a618 43 43 public void draw(Canvas c, int x, int y) { 44 44 c.drawRect(x, y, x+50, y+50, p); 45 45 } 46 47 public void drawUnit(Canvas c, int x, int y) { 46 48 if(currentUnit != null) 47 49 currentUnit.draw(c, x+25, y+25);
Note:
See TracChangeset
for help on using the changeset viewer.