mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 06:39:01 +00:00
Fixed types in Pickup.h
This commit is contained in:
parent
96619e239a
commit
145338a2eb
1 changed files with 4 additions and 4 deletions
|
@ -24,10 +24,10 @@ enum ePickupType
|
|||
class CPickup
|
||||
{
|
||||
ePickupType m_eType;
|
||||
unsigned __int16 m_wQuantity;
|
||||
uint16 m_wQuantity;
|
||||
CObject *m_pObject;
|
||||
int m_nTimer;
|
||||
__int16 m_eModelIndex;
|
||||
__int16 m_wIndex;
|
||||
uint32 m_nTimer;
|
||||
int16 m_eModelIndex;
|
||||
int16 m_wIndex;
|
||||
CVector m_vecPos;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue