Terraria.ModLoader.ModHooks.PostDrawInterface C# (CSharp) Method

PostDrawInterface() static private method

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