Example #1
0
        // Token: 0x0600020B RID: 523 RVA: 0x00013DC4 File Offset: 0x00011FC4
        public static void SectionTabButton(string text, Action code, float space = 0f, int fontsize = 20)
        {
            bool flag = false;

            GUILayout.Space(space);
            if (Prefab.MenuTab(text, ref flag, fontsize))
            {
                SectionTab.CurrentSectionTab = new SectionTab(text, code);
            }
            GUILayout.Space(space);
        }