From 8b47a5b9f49d94192d9a4f077fdd22712fa90df6 Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Sat, 22 Jun 2019 21:16:29 +0300 Subject: First commit of replay system --- src/Pickup.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Pickup.h (limited to 'src/Pickup.h') diff --git a/src/Pickup.h b/src/Pickup.h new file mode 100644 index 00000000..29dd7c36 --- /dev/null +++ b/src/Pickup.h @@ -0,0 +1,33 @@ +#pragma once +#include "common.h" +#include "Object.h" + +enum ePickupType +{ + PICKUP_NONE = 0, + PICKUP_IN_SHOP = 1, + PICKUP_ON_STREET = 2, + PICKUP_ONCE = 3, + PICKUP_ONCE_TIMEOUT = 4, + PICKUP_COLLECTABLE1 = 5, + PICKUP_IN_SHOP_OUT_OF_STOCK = 6, + PICKUP_MONEY = 7, + PICKUP_MINE_INACTIVE = 8, + PICKUP_MINE_ARMED = 9, + PICKUP_NAUTICAL_MINE_INACTIVE = 10, + PICKUP_NAUTICAL_MINE_ARMED = 11, + PICKUP_FLOATINGPACKAGE = 12, + PICKUP_FLOATINGPACKAGE_FLOATING = 13, + PICKUP_ON_STREET_SLOW = 14, +}; + +class CPickup +{ + ePickupType m_eType; + unsigned __int16 m_wQuantity; + CObject *m_pObject; + int m_nTimer; + __int16 m_eModelIndex; + __int16 m_wIndex; + CVector m_vecPos; +}; \ No newline at end of file -- cgit v1.2.3