Ejemplo n.º 1
0
		public EndingConditionProximity (ABPath p, float maxDistance) : base (p) {
			this.maxDistance = maxDistance;
		}
Ejemplo n.º 2
0
		public ABPathEndingCondition (ABPath p) {
			if (p == null) throw new System.ArgumentNullException ("p");
			abPath = p;
			path = p;
		}