| 12 | namespace skybolt { |
| 13 | |
| 14 | InputSystem::InputSystem(const InputPlatformPtr& inputPlatform, const std::vector<LogicalAxisPtr>& axes) : |
| 15 | mInputPlatform(inputPlatform), |
| 16 | mAxes(axes) |
| 17 | { |
| 18 | assert(mInputPlatform); |
| 19 | } |
| 20 | |
| 21 | void InputSystem::advanceWallTime(sim::SecondsD newTime, sim::SecondsD dt) |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected