GameHandler.DropFromInventory C# (CSharp) Method

DropFromInventory() public static method

public static DropFromInventory ( ItemDropType type, int itemID, int quantity ) : void
type ItemDropType
itemID int
quantity int
return void
    public static void DropFromInventory(ItemDropType type, int itemID, int quantity)
    {
        GameHandler.RemoveFromInventory(type, itemID, quantity);
        GameHandler.DropHandler().Drop(type, itemID, quantity);
    }
GameHandler