#ifndef MWINPUT_GYROMANAGER #define MWINPUT_GYROMANAGER #include namespace MWInput { class GyroManager { public: void update(float dt, std::array values) const; void setGuiCursorEnabled(bool enabled) { mGuiCursorEnabled = enabled; } private: bool mGuiCursorEnabled = true; }; } #endif // !MWINPUT_GYROMANAGER