GameHandler.Drop C# (CSharp) Méthode

Drop() public static méthode

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