mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 13:23:45 -07:00
LUS Cleanup: Controllers cleanup (#1016)
This commit is contained in:
parent
6d0d608e38
commit
2d60c772bf
3 changed files with 29 additions and 30 deletions
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
#include "Controller.h"
|
#include "Controller.h"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
namespace Ship {
|
namespace Ship {
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
#include "Lib/ImGui/imgui.h"
|
#include "Lib/ImGui/imgui.h"
|
||||||
|
|
||||||
namespace Ship {
|
namespace Ship {
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
|
|
||||||
#include "Controller.h"
|
#include "Controller.h"
|
||||||
|
|
||||||
class VirtualController final : public Ship::Controller {
|
namespace Ship {
|
||||||
|
class VirtualController final : public Controller {
|
||||||
public:
|
public:
|
||||||
VirtualController(const std::string& CUID, const std::string& KeyName, bool Connected) {
|
VirtualController(const std::string& CUID, const std::string& KeyName, bool Connected) {
|
||||||
GUID = CUID;
|
GUID = CUID;
|
||||||
|
@ -33,3 +34,4 @@ protected:
|
||||||
std::string GetConfSection() { return "Unk"; }
|
std::string GetConfSection() { return "Unk"; }
|
||||||
std::string GetBindingConfSection() { return "Unk"; }
|
std::string GetBindingConfSection() { return "Unk"; }
|
||||||
};
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue