This commit is contained in:
Jesper Lundin 2007-04-04 18:07:00 +00:00
parent 2e0bfbf3bf
commit 71011aa33a
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ public abstract class GameEntity{
public void setLife(int l){
life = l;
}
public void move() {
public void move(int x, int y) {
}
}