Britbot
Britbot.Score.Score ( ITarget  target,
TargetType  type,
double  value,
double  EnemyShips,
double  eta,
int  MinTurnsToEnemyCapture,
int  Density 
) [inline]

Holds the target score relative to the attacker.

Parameters:
targetThe target this score relates to
typeThe type of the target (island or enemy group)
valueThe Numerical value of the island
EnemyShipsamount of enemy ships nearby
etaEstimated time to arrive at target

Definition at line 64 of file Score.cs.

        {
            this.Target = target;
            this.Type = type;
            this.Value = value;
            this.Eta = eta;
            this.EnemyShips = EnemyShips;
            this.MinTurnsToEnemyCapture = MinTurnsToEnemyCapture;
            this.Density = Density;
        }