Terraria.ModLoader.ModHooks.PostDrawInterface C# (CSharp) 메소드

PostDrawInterface() 정적인 개인적인 메소드

static private PostDrawInterface ( SpriteBatch spriteBatch ) : void
spriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
리턴 void
        internal static void PostDrawInterface(SpriteBatch spriteBatch)
        {
            foreach (Mod mod in ModLoader.mods.Values)
            {
                mod.PostDrawInterface(spriteBatch);
            }
        }