Aura.Channel.World.Entities.Creature.RemoveItem C# (CSharp) Метод

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

Removes items with the given id from the creature's inventory.
public RemoveItem ( int itemId, int amount = 1 ) : void
itemId int
amount int
Результат void
		public void RemoveItem(int itemId, int amount = 1)
		{
			this.Inventory.Remove(itemId, amount);
		}