12 lines
173 B
Plaintext
Raw Permalink Normal View History

2015-03-05 12:57:02 +01:00
interface CreatureBehavior {
public void event(int x, int y);
public void event(int c);
public void update(float dt);
public void add(Creature c);
}