mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 15:51:22 +00:00
15 lines
259 B
C++
15 lines
259 B
C++
#pragma once
|
|
|
|
#include "../RetroTypes.hpp"
|
|
|
|
namespace urde {
|
|
|
|
class IController {
|
|
public:
|
|
enum class EMotorState { Stop = 0, Rumble = 1, StopHard = 2 };
|
|
virtual void Poll() = 0;
|
|
virtual void SetMotorState(EMotorState state) = 0;
|
|
};
|
|
|
|
} // namespace urde
|