mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
moved getpath crap to pathfinding (or should i keep it in actor?)
- stubbed some more crap
This commit is contained in:
@@ -30,7 +30,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai.state
|
||||
this.interrupt = false;
|
||||
}
|
||||
|
||||
public virtual void Update(DateTime tick) { }
|
||||
public virtual bool Update(DateTime tick) { return true; }
|
||||
public virtual void OnStart() { }
|
||||
public virtual void OnInterrupt() { }
|
||||
public virtual void OnComplete() { isCompleted = true; }
|
||||
@@ -54,5 +54,10 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai.state
|
||||
return isCompleted;
|
||||
}
|
||||
|
||||
public void ChangeTarget(Character target)
|
||||
{
|
||||
this.target = target;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user