Exemplo n.º 1
0
 public ReactorCore()
 {
     IChangeTemperature tempChange = new ReactorCore();
     tempChange.coolDown = 500;
     tempChange.heatUp = 100;
     
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {

            ReactorCore reactorCore = new ReactorCore(188, 90, 5, 90, 75, 50, 50);
            
            reactorCore.EvasionCheck(188, 90, 5, 90, 75, 50, 50);

            



        }
Exemplo n.º 3
0
 public Radiation ExpendExhaust(ReactorCore core)
 {
     core.CoolDown();
     this.HeatUp();
     return new Radiation();
 }