diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-06-02 23:56:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-02 23:56:56 +0200 |
commit | aa1163ccb2784f618f012ca878e07af54b2e9041 (patch) | |
tree | 04a15b6ef8896ad99ba22258c7bdee00c43c7df6 /src/entities/DummyObject.h | |
parent | gamestates fixed, mpeg now working (diff) | |
parent | added CPhysical flags from Nick (diff) | |
download | re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.gz re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.bz2 re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.lz re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.xz re3-aa1163ccb2784f618f012ca878e07af54b2e9041.tar.zst re3-aa1163ccb2784f618f012ca878e07af54b2e9041.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/DummyObject.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/entities/DummyObject.h b/src/entities/DummyObject.h new file mode 100644 index 00000000..7bfe3a57 --- /dev/null +++ b/src/entities/DummyObject.h @@ -0,0 +1,8 @@ +#pragma once + +#include "Dummy.h" + +class CDummyObject : CDummy +{ +}; +static_assert(sizeof(CDummyObject) == 0x68, "CDummyObject: error"); |