| 16 | namespace skybolt { |
| 17 | |
| 18 | CameraInputSystem::CameraInputSystem(const skybolt::InputPlatformPtr& inputPlatform, CameraInputAxes axes) : |
| 19 | mInputPlatform(inputPlatform), |
| 20 | mAxes(std::move(axes)) |
| 21 | { |
| 22 | mInputPlatform->getEventEmitter()->addEventListener<MouseEvent>(this); |
| 23 | } |
| 24 | |
| 25 | CameraInputSystem::~CameraInputSystem() |
| 26 | { |
nothing calls this directly
no test coverage detected