keyboard warrior

This commit is contained in:
coah
2026-03-03 17:48:27 -06:00
parent fcf329f6cd
commit 72476c875e
29 changed files with 1730 additions and 417 deletions

View File

@@ -64,6 +64,12 @@ public:
void SetWindowFocused(bool focused);
bool IsWindowFocused() const { return m_windowFocused; }
void SetKBMActive(bool active) { m_kbmActive = active; }
bool IsKBMActive() const { return m_kbmActive; }
void SetScreenCursorHidden(bool hidden) { m_screenWantsCursorHidden = hidden; }
bool IsScreenCursorHidden() const { return m_screenWantsCursorHidden; }
bool HasAnyInput() const { return m_hasInput; }
float GetMoveX() const;
@@ -106,6 +112,9 @@ private:
bool m_windowFocused;
bool m_kbmActive;
bool m_screenWantsCursorHidden;
bool m_hasInput;
};