package ring.mobiles.npc;
/**
* Base class representing artificial intelligence for NPC mobiles.
* All implementations of AI for NPCs are state machines. There are
* several built-in implementations for basic NPCs that can respond
* to questions, patrol areas, etc.
* @author projectmoon
*
*/
public class MobAI {
/**
* Do something based on the state of the AI.
*/
public void act() {}
}