public ShipManeuverToSpaceObjectParam(
			ShipManeuverTypeEnum ManeuverType,
			OverviewEntry TargetOverviewEntry = null)
		{
			this.ManeuverType = ManeuverType;
			this.TargetOverviewEntry = TargetOverviewEntry;
		}
		public ShipState(
			BotEngine.EveOnline.Sensor.ShipHitpointsAndEnergy Hitpoints,
			ShipManeuverTypeEnum? ManeuverType)
		{
			this.Hitpoints = Hitpoints;
			this.ManeuverType = ManeuverType;
		}
示例#3
0
 static public string ShipManeuverTypeIndicationRegexPattern(this ShipManeuverTypeEnum type) =>
 Regex.Replace(type.ToString(), "[A-Z]", new MatchEvaluator(match => @"\s*" + match.Value));