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