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/CopPed.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/CopPed.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entities/CopPed.h b/src/entities/CopPed.h new file mode 100644 index 00000000..2658a386 --- /dev/null +++ b/src/entities/CopPed.h @@ -0,0 +1,11 @@ +#pragma once + +#include "Ped.h" + +class CCopPed : public CPed +{ +public: + // 0x53C + uint8 stuff[28]; +}; +static_assert(sizeof(CCopPed) == 0x558, "CCopPed: error"); |