BF2Statistics.Python.Bf2Constants.GetKitName C# (CSharp) Method

GetKitName() public static method

Returns the kit title based on the given kit id
public static GetKitName ( int Id ) : string
Id int
return string
        public static string GetKitName(int Id)
        {
            if (Id >= Kits.Length)
                return "Unknown";

            return Kits[Id];
        }