Package com.starpoints.game.listener
Interface FieldListener
-
- All Known Implementing Classes:
BigBossDrone,BlasterTank,BlueChrystalFigure,ChaosDuck,ChrystalMonster,CleverComputerFigure,CleverComputerFigureMK2,CleverComputerFigureMK2_160,CleverComputerFigureMK2_200,DropMaster,GrayDeath,GreenChrystalFigure,GreenWizzFigure,ItemBlasterGenerator,ItemECM,ItemRocketGenerator,ItemRocketGeneratorBoostFast,LeagueFigure,RedChrystalFigure,RedStarFigure,Rocketeer,SuperTank,SuperTankMK2,SwampGhost,Swirlie,Tank,TheRat,YellowChrystalFigure
public interface FieldListenerListener interface to register at the field for being informed about starting rockets or placed bombs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbombPlaced(ItemBigMine b, AnimationInfo animation)Method that is called when a bigmine is placed on the field.voidrocketStarted(ItemRocket r, AnimationInfo animation)Method that is called when a rocket is started on the field.
-
-
-
Method Detail
-
rocketStarted
void rocketStarted(ItemRocket r, AnimationInfo animation)
Method that is called when a rocket is started on the field.- Parameters:
r- The starting rocket.animation- The AnimationInfo
-
bombPlaced
void bombPlaced(ItemBigMine b, AnimationInfo animation)
Method that is called when a bigmine is placed on the field.- Parameters:
b- The bigmineanimation- The AnimationInfo
-
-