Terraria.ModLoader.BuffLoader.DrawCustomBuffTip C# (CSharp) Method

DrawCustomBuffTip() public static method

public static DrawCustomBuffTip ( string buffTip, SpriteBatch spriteBatch, int originX, int originY ) : void
buffTip string
spriteBatch Microsoft.Xna.Framework.Graphics.SpriteBatch
originX int
originY int
return void
        public static void DrawCustomBuffTip(string buffTip, SpriteBatch spriteBatch, int originX, int originY)
        {
            foreach (var hook in HookDrawCustomBuffTip)
            {
                hook(buffTip, spriteBatch, originX, originY);
            }
        }