Terraria.ModLoader.PlayerHooks.UpdateEquips C# (CSharp) 메소드

UpdateEquips() 공개 정적인 메소드

public static UpdateEquips ( Player player, bool &wallSpeedBuff, bool &tileSpeedBuff, bool &tileRangeBuff ) : void
player Player
wallSpeedBuff bool
tileSpeedBuff bool
tileRangeBuff bool
리턴 void
        public static void UpdateEquips(Player player, ref bool wallSpeedBuff, ref bool tileSpeedBuff, ref bool tileRangeBuff)
        {
            foreach (ModPlayer modPlayer in player.modPlayers)
            {
                modPlayer.UpdateEquips(ref wallSpeedBuff, ref tileSpeedBuff, ref tileRangeBuff);
            }
        }