mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +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