Changeset bbee931 in advance-wars
- Timestamp:
- Feb 1, 2011, 11:39:20 PM (14 years ago)
- Branches:
- master
- Children:
- 5d77d43
- Parents:
- 00c432c (diff), a79ce1b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/com/medievaltech/game/Soldier.java
r00c432c rbbee931 12 12 13 13 @Override 14 public booleanmove(Point point) {14 public void move(Point point) { 15 15 // TODO Auto-generated method stub 16 return false;16 17 17 } 18 18 19 19 @Override 20 public booleanattack(Point point) {20 public void attack(Point point) { 21 21 // TODO Auto-generated method stub 22 return false;22 23 23 } 24 24 … … 40 40 return null; 41 41 } 42 43 @Override 44 public void draw() { 45 // TODO Auto-generated method stub 46 47 } 42 48 43 49
Note:
See TracChangeset
for help on using the changeset viewer.