GameHandler.HasItem C# (CSharp) Method

HasItem() public static method

public static HasItem ( int id, int n ) : bool
id int
n int
return bool
    public static bool HasItem(int id, int n)
    {
        return GameHandler.GetCount(id, GameHandler.Items()) >= n;
    }
GameHandler