Input.h 404 B

123456789101112131415161718
  1. // Copyright 2017 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <string>
  5. #include "InputCommon/ControllerEmu/Control/Control.h"
  6. namespace ControllerEmu
  7. {
  8. class Input : public Control
  9. {
  10. public:
  11. Input(Translatability translate, std::string name, std::string ui_name);
  12. Input(Translatability translate, std::string name);
  13. };
  14. } // namespace ControllerEmu