Example #1
0
 public virtual void DespawnObject(WorldObject obj)
 {
     this.SpawnedObjects.Remove(obj);
 }
Example #2
0
 public bool CanSee(WorldObject otherObject)
 {
     return(this.Position.IsInCircle(otherObject.Position, 75f));
 }