11 lines
209 B
C++
11 lines
209 B
C++
#include "Platform/Window.h"
|
|
|
|
namespace XCEngine {
|
|
namespace Platform {
|
|
|
|
void Window::SetInputModule(Input::InputModule* module) {
|
|
m_inputModule = module;
|
|
}
|
|
|
|
} // namespace Platform
|
|
} // namespace XCEngine
|