Lots of SzGui work

This commit is contained in:
2026-02-25 00:08:27 -06:00
parent e6749c51c4
commit dad80e30da
20 changed files with 968 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
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());
}
}