Esempio n. 1
0
		public Reactor(int power)
        {

			reactorCore = new ReactorCore();

            this.Power = power;
        }
Esempio n. 2
0
		//TODO fix issue with radiation, maybe change to Exaust or EmergencyRadiationDischarge
		public Radiation ExpendExhaust(ReactorCore core)
        {
            core.CoolDown();
            this.HeatUp();
            return new Radiation();
        }