Patch update - V9.2.1

This commit is contained in:
2025-03-19 13:22:56 +01:00
parent 606aaa76e9
commit f2a8bb6b5b
6 changed files with 34 additions and 7 deletions

View File

@@ -50,6 +50,8 @@ public:
bool IsSPressed() const;
bool IsQPressed() const;
bool IsEPressed()const;
bool IsTildePressed() const;
bool IsTildeReleased() const;
bool IsKeyDown(unsigned int) const;
@@ -69,6 +71,7 @@ private:
DIMOUSESTATE m_mouseState;
int m_screenWidth, m_screenHeight, m_mouseX, m_mouseY;
bool m_previousTildeState;
};

View File

@@ -52,6 +52,7 @@ private:
int m_initialWindowHeight;
bool m_isDirect3DInitialized;
bool m_isResizing = false;
bool m_IsDebugKeyPressed = false;
std::mutex renderMutex;
};