renamed mob stuff to battlenpc

- stubbed spawn/die/despawn functions
This commit is contained in:
Tahir Akhlaq 2017-07-07 22:08:48 +01:00
parent cc1929a9fb
commit d895357182
10 changed files with 63 additions and 124 deletions

View file

@ -203,11 +203,8 @@ namespace FFXIVClassic_Map_Server.Actors
// time elapsed since last ai update
if (aiContainer != null)
{
this.aiContainer.Update(tick);
}
this.aiContainer?.Update(tick);
/*
var diffTime = (tick - lastAiUpdate);
@ -369,7 +366,21 @@ namespace FFXIVClassic_Map_Server.Actors
}
*/
}
public virtual void Spawn(DateTime tick)
{
}
public virtual void Die(DateTime tick)
{
}
protected virtual void Despawn(DateTime tick)
{
}
}
}