diff options
author | aap <aap@papnet.eu> | 2019-06-02 17:13:56 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-02 17:13:56 +0200 |
commit | 541665d9d12d9f85dd759b14a8c6abd84714b84f (patch) | |
tree | 038a09c138f91ffe5512e27f0cfe6141f47ea24e /src/entities/Train.h | |
parent | Merge pull request #6 from Fire-Head/master (diff) | |
download | re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.gz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.bz2 re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.lz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.xz re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.tar.zst re3-541665d9d12d9f85dd759b14a8c6abd84714b84f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Train.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entities/Train.h b/src/entities/Train.h new file mode 100644 index 00000000..e591239b --- /dev/null +++ b/src/entities/Train.h @@ -0,0 +1,11 @@ +#pragma once + +#include "Vehicle.h" + +class CTrain : public CVehicle +{ +public: + // 0x288 + uint8 stuff[92]; +}; +static_assert(sizeof(CTrain) == 0x2E4, "CTrain: error"); |