GameHandler.Drop C# (CSharp) Method

Drop() public static method

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