mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 00:31:21 +00:00
28 lines
330 B
C++
28 lines
330 B
C++
#ifndef __RETRO_ICONTROLLER_HPP__
|
|
#define __RETRO_ICONTROLLER_HPP__
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class IController
|
|
{
|
|
public:
|
|
class CControllerAxis
|
|
{
|
|
};
|
|
class CControllerButton
|
|
{
|
|
};
|
|
class IControllerGamepadData
|
|
{
|
|
};
|
|
|
|
void Poll();
|
|
u32 GetDeviceCount();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_ICONTROLLER_HPP__
|