25 lines
504 B
C++
25 lines
504 B
C++
// Copyright 2019 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
#include "Common/Matrix.h"
|
|
#include "InputCommon/ControllerEmu/ControlGroup/ControlGroup.h"
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class IMUGyroscope : public ControlGroup
|
|
{
|
|
public:
|
|
using StateData = Common::Vec3;
|
|
|
|
IMUGyroscope(std::string name, std::string ui_name);
|
|
|
|
std::optional<StateData> GetState() const;
|
|
};
|
|
} // namespace ControllerEmu
|