metaforce/Runtime/GuiSys/CGuiControllerInfo.hpp

24 lines
386 B
C++
Raw Normal View History

2016-03-11 22:50:15 +00:00
#ifndef __URDE_CGUICONTROLLERINFO_HPP__
#define __URDE_CGUICONTROLLERINFO_HPP__
2016-03-15 04:55:57 +00:00
#include "RetroTypes.hpp"
2016-03-11 22:50:15 +00:00
namespace urde
{
2016-03-15 04:55:57 +00:00
struct CGuiControllerInfo
2016-03-11 22:50:15 +00:00
{
public:
2016-03-14 23:32:44 +00:00
struct CGuiControllerStateInfo
2016-03-11 22:50:15 +00:00
{
2016-03-15 04:55:57 +00:00
char cIdx = 0;
char lx = 0, ly = 0, rx = 0, ry = 0;
2016-03-11 22:50:15 +00:00
};
2016-03-15 04:55:57 +00:00
u32 x0_ = 0;
CGuiControllerStateInfo x4_stateInfo;
2016-03-11 22:50:15 +00:00
};
}
#endif // __URDE_CGUICONTROLLERINFO_HPP__