Terraria.ModLoader.NPCLoader.ScaleExpertStats C# (CSharp) Метод

ScaleExpertStats() публичный статический Метод

public static ScaleExpertStats ( NPC npc, int numPlayers, float bossLifeScale ) : void
npc NPC
numPlayers int
bossLifeScale float
Результат void
        public static void ScaleExpertStats(NPC npc, int numPlayers, float bossLifeScale)
        {
            npc.modNPC?.ScaleExpertStats(numPlayers, bossLifeScale);

            foreach (var hook in HookScaleExpertStats)
            {
                hook(npc, numPlayers, bossLifeScale);
            }
        }