12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
|
|
interface CreatureBehavior {
|
||
|
|
|
||
|
|
public void event(int x, int y);
|
||
|
|
|
||
|
|
public void event(int c);
|
||
|
|
|
||
|
|
public void update(float dt);
|
||
|
|
|
||
|
|
public void add(Creature c);
|
||
|
|
|
||
|
|
}
|