Exemplo n.º 1
0
 public AirlaunchPrep()
 {
     Progress     = 0;
     BP           = 0;
     Cost         = 0;
     Direction    = PrepDirection.Mount;
     AssociatedID = string.Empty;
 }
Exemplo n.º 2
0
        public AirlaunchPrep(BuildListVessel vessel, string id)
        {
            Direction    = PrepDirection.Mount;
            AssociatedID = id;
            Progress     = 0;

            BP   = MathParser.ParseAirlaunchTimeFormula(vessel);
            Cost = MathParser.ParseAirlaunchCostFormula(vessel);
        }
Exemplo n.º 3
0
 public KCT_AirlaunchPrep()
 {
     name         = Name_Mount;
     progress     = 0;
     BP           = 0;
     cost         = 0;
     Direction    = PrepDirection.Mount;
     associatedID = "";
 }
Exemplo n.º 4
0
        public KCT_AirlaunchPrep(KCT_BuildListVessel vessel, string id)
        {
            Direction    = PrepDirection.Mount;
            associatedID = id;
            progress     = 0;

            BP   = KCT_MathParsing.ParseAirlaunchTimeFormula(vessel);
            cost = KCT_MathParsing.ParseAirlaunchCostFormula(vessel);
            name = Name_Mount;
        }