2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:47:42 +00:00

Update API.

Use u32 rather than uint32_t in CRandom16
This commit is contained in:
2015-11-08 19:43:11 -08:00
parent 812967ffbf
commit 9cb8b10fda
9 changed files with 46 additions and 48 deletions

View File

@@ -11,9 +11,9 @@ struct CKeyboardMouseControllerData
bool m_charKeys[256] = {};
bool m_specialKeys[26] = {};
bool m_mouseButtons[6] = {};
boo::IWindowCallback::EModifierKey m_modMask = boo::IWindowCallback::MKEY_NONE;
boo::IWindowCallback::SWindowCoord m_mouseCoord;
boo::IWindowCallback::SScrollDelta m_accumScroll;
boo::EModifierKey m_modMask = boo::MKEY_NONE;
boo::SWindowCoord m_mouseCoord;
boo::SScrollDelta m_accumScroll;
};
}