mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 02:29:12 +01:00
23689387e1
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5403 8ced0084-cf51-0410-be5f-012b33b47a6e
22 lines
279 B
C++
22 lines
279 B
C++
#include "Attachment.h"
|
|
|
|
namespace WiimoteEmu
|
|
{
|
|
|
|
class Guitar : public Attachment
|
|
{
|
|
public:
|
|
Guitar();
|
|
void GetState( u8* const data, const bool focus );
|
|
|
|
private:
|
|
Buttons* m_buttons;
|
|
Buttons* m_frets;
|
|
Buttons* m_strum;
|
|
Triggers* m_whammy;
|
|
AnalogStick* m_stick;
|
|
};
|
|
|
|
|
|
}
|