[REDACTED 8811]
I wonder how to change a cliloc into a name, not using the cliloc at all
See below, Example 1 using the cliloc, as Example 2 does not.
Into
See below, Example 1 using the cliloc, as Example 2 does not.
Example 1:
public static BaseDyeInfo[] Table => m_Table;
private static readonly BaseDyeInfo[] m_Table =
{
new BaseDyeInfo( BaseDyeType.Emerald, 1173, 1023856 ),
Into
Example 2:
public static BaseDyeInfo[] Table => m_Table;
private static readonly BaseDyeInfo[] m_Table =
{
new BaseDyeInfo( BaseDyeType.Emerald, 1173, "Emerald" ),