15 lines
422 B
C#
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());
|
|
}
|
|
} |