Server.Items.RepairDeed.RepairSkillInfo.GetInfo C# (CSharp) Method

GetInfo() public static method

public static GetInfo ( RepairSkillType type ) : RepairSkillInfo
type RepairSkillType
return RepairSkillInfo
			public static RepairSkillInfo GetInfo( RepairSkillType type )
			{
				int v = (int)type;

				if( v < 0 || v >= m_Table.Length )
					v = 0;

				return m_Table[v];
			}
		}
RepairDeed.RepairSkillInfo