summaryrefslogtreecommitdiffstats
path: root/src/objects/DummyObject.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/objects/DummyObject.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/objects/DummyObject.h')
-rw-r--r--src/objects/DummyObject.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/objects/DummyObject.h b/src/objects/DummyObject.h
new file mode 100644
index 00000000..10554bdd
--- /dev/null
+++ b/src/objects/DummyObject.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "Dummy.h"
+
+class CObject;
+
+class CDummyObject : public CDummy
+{
+public:
+ CDummyObject(void) {}
+ CDummyObject(CObject *obj);
+ void dtor(void) { this->CDummyObject::~CDummyObject(); }
+};
+static_assert(sizeof(CDummyObject) == 0x68, "CDummyObject: error");