GameHandler.HasArmor C# (CSharp) Method

HasArmor() public static method

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