Files
sessionzero-cs/SzGui/Windows/StartupWindow.cs
2026-02-25 00:08:27 -06:00

15 lines
422 B
C#

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());
}
}