Beispiel #1
0
        public void StopHealthRegen()
        {
            if (HealthRegion != null)
            {
                HealthRegion.Unregister();
            }

            HealthRegion = null;
        }
Beispiel #2
0
        public void StartHealthRegen()
        {
            if (HealthRegion != null)
            {
                HealthRegion.Unregister();
            }

            HealthRegion = new HealthRegenRegion2(this, rvsc, Name);
        }
        public void StopHealthRegen()
        {
			if ( HealthRegion != null)
            	HealthRegion.Unregister();

          	HealthRegion = null;
        }
		public void StartHealthRegen()
        {
			if ( HealthRegion != null)
            	HealthRegion.Unregister();

          	HealthRegion = new HealthRegenRegion2(this, rvsc, Name);
        }