Aura.Channel.World.Shops.PersonalShop.OpenFor C# (CSharp) Метод

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

Opens shop for given creature.
public OpenFor ( Creature creature ) : void
creature Aura.Channel.World.Entities.Creature
Результат void
		public void OpenFor(Creature creature)
		{
			lock (this.CustomerEntityIds)
				this.CustomerEntityIds.Add(creature.EntityId);
			Send.PersonalShopOpenR(creature, this);
		}