mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-29 12:34:14 +01:00
Fixed types in Pickup.h
This commit is contained in:
parent
96619e239a
commit
145338a2eb
@ -24,10 +24,10 @@ enum ePickupType
|
|||||||
class CPickup
|
class CPickup
|
||||||
{
|
{
|
||||||
ePickupType m_eType;
|
ePickupType m_eType;
|
||||||
unsigned __int16 m_wQuantity;
|
uint16 m_wQuantity;
|
||||||
CObject *m_pObject;
|
CObject *m_pObject;
|
||||||
int m_nTimer;
|
uint32 m_nTimer;
|
||||||
__int16 m_eModelIndex;
|
int16 m_eModelIndex;
|
||||||
__int16 m_wIndex;
|
int16 m_wIndex;
|
||||||
CVector m_vecPos;
|
CVector m_vecPos;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user