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

CopyCustomBiomesTo() 공개 정적인 메소드

public static CopyCustomBiomesTo ( Player player, Player other ) : void
player Player
other Player
리턴 void
        public static void CopyCustomBiomesTo(Player player, Player other)
        {
            foreach (ModPlayer modPlayer in player.modPlayers)
            {
                modPlayer.CopyCustomBiomesTo(other);
            }
        }