1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 02:57:37 +00:00

Fix CPickup

This commit is contained in:
Sergeanur 2019-10-01 19:53:25 +03:00
parent 1f7008ffd3
commit 9149367f86

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "Weapon.h" #include "Weapon.h"
enum ePickupType enum ePickupType : uint8
{ {
PICKUP_NONE = 0, PICKUP_NONE = 0,
PICKUP_IN_SHOP = 1, PICKUP_IN_SHOP = 1,
@ -26,6 +26,7 @@ class CObject;
class CPickup class CPickup
{ {
ePickupType m_eType; ePickupType m_eType;
bool m_bRemoved;
uint16 m_wQuantity; uint16 m_wQuantity;
CObject *m_pObject; CObject *m_pObject;
uint32 m_nTimer; uint32 m_nTimer;
@ -34,6 +35,8 @@ class CPickup
CVector m_vecPos; CVector m_vecPos;
}; };
static_assert(sizeof(CPickup) == 0x1C, "CPickup: error");
class CPickups class CPickups
{ {
public: public: