Welcome to the GBF Test Portal

This was built to track decompiler and CFG progress.

Decompiler Output

function getTitleByTextType(texttype#0)
{
    if (texttype#0 == "weapon") 
    {
        return "Weapons";
    }
    else
    {
        if (texttype#0 == "npc") 
        {
            return "NPCs";
        }
        else
        {
            if (texttype#0 == "class") 
            {
                return "Classes";
            }
            else
            {
                return null;
            }
        }
    }
}