mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-16 19:19:13 +01:00
e9e12ff100
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5842 8ced0084-cf51-0410-be5f-012b33b47a6e
22 lines
404 B
C++
22 lines
404 B
C++
#ifndef UDPNUNCHUCK_H
|
|
#define UDPNUNCHUCK_H
|
|
|
|
#include "Nunchuk.h"
|
|
|
|
class UDPWrapper;
|
|
|
|
namespace WiimoteEmu
|
|
{
|
|
|
|
class UDPNunchuk : public Nunchuk
|
|
{
|
|
public:
|
|
UDPNunchuk(UDPWrapper * _wrp) : wrp(_wrp) {name="UDP Nunchuk";}; //sorry for this :p I just dont' feel like rewriting the whole class for a name :p
|
|
virtual void GetState( u8* const data, const bool focus );
|
|
private:
|
|
UDPWrapper * wrp;
|
|
};
|
|
|
|
}
|
|
#endif
|