2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 00:31:21 +00:00
metaforce/Runtime/Input/IController.hpp
2015-08-27 14:11:31 -10:00

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__