2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 20:31:21 +00:00
metaforce/Runtime/Input/CKeyboardMouseController.hpp
Phillip Stephens 9cb8b10fda Update API.
Use u32 rather than uint32_t in CRandom16
2015-11-08 19:43:11 -08:00

22 lines
452 B
C++

#ifndef __RETRO_CKEYBOARDMOUSECONTROLLER_HPP__
#define __RETRO_CKEYBOARDMOUSECONTROLLER_HPP__
#include <boo/boo.hpp>
namespace Retro
{
struct CKeyboardMouseControllerData
{
bool m_charKeys[256] = {};
bool m_specialKeys[26] = {};
bool m_mouseButtons[6] = {};
boo::EModifierKey m_modMask = boo::MKEY_NONE;
boo::SWindowCoord m_mouseCoord;
boo::SScrollDelta m_accumScroll;
};
}
#endif // __RETRO_CKEYBOARDMOUSECONTROLLER_HPP__