Terraria.ModLoader.ModGore.DrawBackGore C# (CSharp) Method

DrawBackGore() static private method

static private DrawBackGore ( Gore gore ) : bool
gore Terraria.Gore
return bool
        internal static bool DrawBackGore(Gore gore)
        {
            if (gore.modGore != null)
            {
                return gore.modGore.DrawBehind(gore);
            }
            return ((gore.type >= 706 && gore.type <= 717) || gore.type == 943) && (gore.frame < 7 || gore.frame > 9);
        }