mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-12-01 01:00:33 +00:00
13 lines
212 B
C
13 lines
212 B
C
#ifndef _CONTROLLER_H
|
|
#define _CONTROLLER_H
|
|
|
|
#include "JSystem/JUtility/JUTGamePad.h"
|
|
|
|
struct Controller : public JUTGamePad {
|
|
Controller(JUTGamePad::EPadPort);
|
|
|
|
virtual ~Controller(); // _08 (weak)
|
|
};
|
|
|
|
#endif
|