GameHandler.HasWeapon C# (CSharp) Method

HasWeapon() public static method

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