using ImGuiNET; namespace SzGui.Windows; public class StartupWindow : SzGuiWindowBase { public StartupWindow() => WindowName = "Startup"; protected override void RenderContent() { ImGui.TextUnformatted("Welcome to SessionZero!"); var testBttn = ImGui.Button(IconFonts.FontAwesome6.Gear + " Settings"); if (testBttn) SzApp.AppInstance.ActivateWindow(new SettingsWindow()); } }