summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Train.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
committeraap <aap@papnet.eu>2019-07-07 13:09:11 +0200
commit53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb (patch)
treefc65a6c40fa719f9d43be9e0e15be79c490135e0 /src/vehicles/Train.h
parentfinished CPhysical (diff)
downloadre3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.gz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.bz2
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.lz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.xz
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.tar.zst
re3-53023eb65bdcde43e341c1ecb7cf0c7f8ee524fb.zip
Diffstat (limited to 'src/vehicles/Train.h')
-rw-r--r--src/vehicles/Train.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/vehicles/Train.h b/src/vehicles/Train.h
new file mode 100644
index 00000000..84b6faf5
--- /dev/null
+++ b/src/vehicles/Train.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#include "common.h"
+#include "patcher.h"
+#include "Vehicle.h"
+
+enum
+{
+ TRAIN_DOOR_STATE2 = 2
+};
+
+class CTrain : public CVehicle
+{
+public:
+ // 0x288
+ uint8 stuff1[20];
+ uint8 m_trackId;
+ uint8 stuff2[7];
+ int16 m_doorState;
+ uint8 stuff3[62];
+
+ CTrain(int, uint8);
+ CTrain* ctor(int, uint8);
+ void dtor(void) { this->CTrain::~CTrain(); }
+};
+static_assert(sizeof(CTrain) == 0x2E4, "CTrain: error");