// Interface for objects that can be controlled by game players. package SpaceWar; interface ControlledObject { void detonateMissile(); void toggleEngine(); void rotateClockwise(); void rotateCounterClockwise(); void rotateStop(); void launchMissile(); void launchMine(); void restartGame(); void randomizeGame(); }