GameHandler.HasWeapon C# (CSharp) Méthode

HasWeapon() public static méthode

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