mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 11:47:43 +00:00
various input class implementations
This commit is contained in:
27
Runtime/Input/IController.hpp
Normal file
27
Runtime/Input/IController.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user