Package one.empty3.apps.opad
Class Boss
- java.lang.Object
-
- one.empty3.apps.opad.Boss
-
public abstract class Boss extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Representable
anima
protected float
energy
protected Point2D
position
-
Constructor Summary
Constructors Constructor Description Boss()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract boolean
contact()
Representable
getAnima()
float
getEnergy()
Point2D
getPosition()
void
setAnima(Representable anima)
void
setEnergy(float energy)
void
setPosition(Point2D position)
-
-
-
Field Detail
-
position
protected Point2D position
-
energy
protected float energy
-
anima
protected Representable anima
-
-
Method Detail
-
getPosition
public Point2D getPosition()
-
setPosition
public void setPosition(Point2D position)
-
getEnergy
public float getEnergy()
-
setEnergy
public void setEnergy(float energy)
-
getAnima
public Representable getAnima()
-
setAnima
public void setAnima(Representable anima)
-
contact
protected abstract boolean contact()
-
-