diff options
author | aap <aap@papnet.eu> | 2020-01-20 22:07:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 22:07:47 +0100 |
commit | c6894b15be057bf294a8d642052ba627c1c79c36 (patch) | |
tree | 739e2dafe2617481334ba7f28a94b1733e19cc1a /src/entities | |
parent | PowerPoints (diff) | |
parent | MLO, XtraCompsModelInfo, MovingThing, Solid (diff) | |
download | re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar.gz re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar.bz2 re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar.lz re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar.xz re3-c6894b15be057bf294a8d642052ba627c1c79c36.tar.zst re3-c6894b15be057bf294a8d642052ba627c1c79c36.zip |
Diffstat (limited to 'src/entities')
-rw-r--r-- | src/entities/Solid.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/entities/Solid.h b/src/entities/Solid.h new file mode 100644 index 00000000..f4679b3b --- /dev/null +++ b/src/entities/Solid.h @@ -0,0 +1,14 @@ +#pragma once
+
+#include "Entity.h"
+
+class CSolid : public CEntity
+{
+public:
+ CSolid(void) {
+ bRemoveFromWorld = true;
+ bHasHitWall = false;
+ bImBeingRendered = false;
+ m_flagE2 = true;
+ }
+};
\ No newline at end of file |