Aura.Channel.World.Dungeons.Puzzles.MonsterGroup.MonsterGroup C# (CSharp) Метод

MonsterGroup() публичный Метод

Creates new monster group.
public MonsterGroup ( string name, Aura.Channel.World.Dungeons.Puzzles.Puzzle puzzle, PuzzlePlace place, Placement spawnPosition = Placement.Random ) : Aura.Channel.World.Entities
name string
puzzle Aura.Channel.World.Dungeons.Puzzles.Puzzle
place PuzzlePlace
spawnPosition Placement
Результат Aura.Channel.World.Entities
		public MonsterGroup(string name, Puzzle puzzle, PuzzlePlace place, Placement spawnPosition = Placement.Random)
		{
			_monsters = new List<NPC>();

			this.Name = name;
			this.Puzzle = puzzle;
			this.Place = place;
			_spawnPosition = spawnPosition;
		}