feat: CameraView OpenGL render

This commit is contained in:
2026-02-03 20:09:29 +03:00
parent dc3c195c21
commit 99ebb79e0f
9 changed files with 513 additions and 702 deletions
+5 -1
View File
@@ -4,8 +4,12 @@ namespace GSS2.Test.Views;
public partial class MainView : UserControl
{
public MainView()
private readonly ILogger<MainView> _logger;
public MainView(ILogger<MainView> logger)
{
_logger = logger;
InitializeComponent();
_logger.LogInformation("{} initialized", nameof(MainView));
}
}