| 13 | //If you want, you can manually add them to es_input.cfg. |
| 14 | |
| 15 | GuiInputConfig::GuiInputConfig(Window* window, InputConfig* target) : GuiComponent(window), mTargetConfig(target), mCanSkip(false) |
| 16 | { |
| 17 | mCurInputId = 0; |
| 18 | LOG(LogInfo) << "Configuring device " << target->getDeviceId(); |
| 19 | } |
| 20 | |
| 21 | void GuiInputConfig::update(int deltaTime) |
| 22 | { |
nothing calls this directly
no test coverage detected