Aura.Channel.World.Inventory.InventoryPocketNormal.InventoryPocketNormal C# (CSharp) Method

InventoryPocketNormal() public method

public InventoryPocketNormal ( Pocket pocket, int width, int height ) : System
pocket Pocket
width int
height int
return System
		public InventoryPocketNormal(Pocket pocket, int width, int height)
			: base(pocket)
		{
			_items = new Dictionary<long, Item>();
			_map = new Item[width, height];

			_width = width;
			_height = height;
		}