GameHandler.Drop C# (CSharp) Метод

Drop() публичный статический Метод

public static Drop ( Vector3 position, ItemDropType type, int itemID, int quantity ) : void
position Vector3
type ItemDropType
itemID int
quantity int
Результат void
    public static void Drop(Vector3 position, ItemDropType type, int itemID, int quantity)
    {
        GameHandler.DropHandler().Drop(position, type, itemID, quantity);
    }
GameHandler