GameHandler.HasWeapon C# (CSharp) 메소드

HasWeapon() 공개 정적인 메소드

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