feat: 实现 Window 与 InputModule 消息集成

This commit is contained in:
2026-03-22 17:14:11 +08:00
parent cf9229fc21
commit fa2d2713d7
9 changed files with 256 additions and 24 deletions

View File

@@ -0,0 +1,11 @@
#include "Platform/Window.h"
namespace XCEngine {
namespace Platform {
void Window::SetInputModule(Input::InputModule* module) {
m_inputModule = module;
}
} // namespace Platform
} // namespace XCEngine