dolphin/Source/Plugins/Plugin_WiimoteNew/Src/WiimoteEmu/Attachment/Drums.h

20 lines
234 B
C++

#include "Attachment.h"
namespace WiimoteEmu
{
class Drums : public Attachment
{
public:
Drums();
void GetState( u8* const data, const bool focus );
private:
Buttons* m_buttons;
Buttons* m_pads;
AnalogStick* m_stick;
};
}