This commit is contained in:
parent
a92a0c021e
commit
938c098161
1 changed files with 16 additions and 1 deletions
|
|
@ -2,6 +2,7 @@ package ei.game.scene.map;
|
|||
|
||||
import ei.engine.math.Vector2f;
|
||||
import ei.engine.math.Vector2i;
|
||||
import ei.engine.sound.Sound;
|
||||
import ei.game.player.Player;
|
||||
import ei.game.scene.SelectBox;
|
||||
import ei.game.scene.units.Unit;
|
||||
|
|
@ -37,7 +38,6 @@ public abstract class MapEntity extends Unit{
|
|||
|
||||
@Override
|
||||
public void destroyed() {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -45,4 +45,19 @@ public abstract class MapEntity extends Unit{
|
|||
protected SelectBox getSelection() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Sound getGunSound() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Sound getMoveSound() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Sound getSelectSound() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue