Aura.Channel.World.Dungeons.Puzzles.MonsterGroup.OnDeath C# (CSharp) Method

OnDeath() private method

Raised when one of the monsters dies.
private OnDeath ( Creature creature, Creature killer ) : void
creature Aura.Channel.World.Entities.Creature
killer Aura.Channel.World.Entities.Creature
return void
		private void OnDeath(Creature creature, Creature killer)
		{
			Interlocked.Decrement(ref _remaining);
			this.Puzzle.Script.OnMonsterDead(this.Puzzle, this);
		}