Fixed a compile problem

This commit is contained in:
Ziver Koc 2007-04-23 15:51:55 +00:00
parent ba3daada90
commit e1c0fa7a48
2 changed files with 5 additions and 1 deletions

View file

@ -51,6 +51,11 @@ public abstract class MapEntity extends Unit{
return null;
}
@Override
public Sound getAttackSound() {
return null;
}
@Override
public Sound getMoveSound() {
return null;

View file

@ -31,5 +31,4 @@ public class Stone extends MapEntity{
public Entity getSprite() {
return stone;
}
}