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

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

Creates new puzzle place.
public PuzzlePlace ( Aura.Channel.World.Dungeons.Generation.DungeonFloorSection section, Aura.Channel.World.Dungeons.Puzzles.Puzzle puzzle, string name ) : System.Collections.Generic
section Aura.Channel.World.Dungeons.Generation.DungeonFloorSection
puzzle Aura.Channel.World.Dungeons.Puzzles.Puzzle
name string
Результат System.Collections.Generic
		public PuzzlePlace(DungeonFloorSection section, Puzzle puzzle, string name)
		{
			_placementProviders = new Dictionary<Placement, PlacementProvider>();
			this.Doors = new Door[] { null, null, null, null };

			_section = section;
			_name = name;
			this.PlaceIndex = -1;
			this.Puzzle = puzzle;
		}