minor log - update

This commit is contained in:
2025-01-18 15:56:25 +01:00
parent cb3f10b7d5
commit a88ed06198
7 changed files with 145 additions and 115 deletions

View File

@@ -8,6 +8,7 @@
#include <imgui_impl_dx11.h>
#include <imgui_impl_win32.h>
#include <windows.h>
#include <deque>
class ApplicationClass;
@@ -46,7 +47,7 @@ public:
bool m_EnableCelShading;
private :
private:
bool showObjectWindow = false;
bool showTerrainWindow = false;
bool showLightWindow = false;
@@ -62,6 +63,7 @@ private :
ID3D11DeviceContext* m_deviceContext;
ImVec2 windowSize;
const std::deque<Logger::LogEntry>& logBuffer = Logger::Get().GetLogBuffer();
};
#endif