Exemplo n.º 1
0
 public GameStateInfo(Vector3 posistion, Region.Location location)
 {
     Posistion = posistion;
     Location = location;
     GameTimeSet = EloBuddy.Game.Time;
 }
Exemplo n.º 2
0
 public static SmartList<AIHeroClient> InRegionOrDistance(Region.Location region, Vector3 point, float distance)
 {
     return InRegion(region) + InDistance(point, distance);
 }
Exemplo n.º 3
0
 public static SmartList<AIHeroClient> InRegion(Region.Location region)
 {
     return Heroes.Where(x => x.Position.InWhatRegion() == region).ToList().ToSmartList();
 }
Exemplo n.º 4
0
 public virtual void OnArriveAtRegion(Region.Location prevoiusRegion, Region.Location currentRegion) { }