Britbot
Britbot.Simulator.SimulatedGroup.SimulatedGroup ( int  id,
int  owner,
double  firePower,
bool  isCapturing 
) [inline]

just a constructor

Parameters:
id
owner
firePower

Definition at line 55 of file SimulatedGroup.cs.

        {
            //just set stuff
            this.Id = id;
            this.Owner = owner;
            this.FirePower = firePower;
            this.IsCapturing = isCapturing;

            this.IsAlive = true;
            this.ReviveTurn = -1;

            //set originals
            this.OriginalIsAlive = IsAlive;
            this.OriginalIsCapturing = isCapturing;
            this.OriginalReviveTurn = -1;
        }