fpopov thanks

This commit is contained in:
bird_egop
2026-05-09 20:36:43 +03:00
parent d73a6dde70
commit eb458ad9a8
43 changed files with 1562 additions and 1233 deletions
+5 -5
View File
@@ -12,10 +12,10 @@ namespace NResUI;
public class App
{
public GL GL { get; set; }
public IInputContext Input { get; set; }
public GL GL { get; set; } = null!;
public IInputContext Input { get; set; } = null!;
public static App Instance;
public static App Instance = null!;
private static bool _dockspaceOpen = true;
private static bool _optFullscreenPersistant = true;
@@ -25,7 +25,7 @@ public class App
public ImFontPtr OpenSansFont;
private List<IImGuiPanel> _imGuiPanels;
private List<IImGuiPanel> _imGuiPanels = [];
public App()
{
@@ -151,4 +151,4 @@ public class App
public void OnKeyReleased(Key key)
{
}
}
}