SetMatch() public method

public SetMatch ( bool male, int &equipSlot, bool &robes ) : void
male bool
equipSlot int
robes bool
return void
Ejemplo n.º 1
0
        internal static void SetMatch(int type, ref int equipSlot, ref bool robes)
        {
            ModItem modItem = GetItem(type);

            if (modItem != null)
            {
                modItem.SetMatch(ref equipSlot, ref robes);
            }
            foreach (GlobalItem globalItem in globalItems)
            {
                globalItem.SetMatch(type, ref equipSlot, ref robes);
            }
        }