Lots of SzGui work
This commit is contained in:
15
SzGui/Windows/StartupWindow.cs
Normal file
15
SzGui/Windows/StartupWindow.cs
Normal 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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user