GameHandler.HasArmor C# (CSharp) Méthode

HasArmor() public static méthode

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