Aura.Channel.World.Shops.PersonalShop.CloseFor C# (CSharp) 메소드

CloseFor() 공개 메소드

Opens shop for given creature.
public CloseFor ( Creature creature ) : void
creature Aura.Channel.World.Entities.Creature
리턴 void
		public void CloseFor(Creature creature)
		{
			lock (this.CustomerEntityIds)
				this.CustomerEntityIds.Remove(creature.EntityId);
			Send.PersonalShopCloseWindow(creature);
		}