From a9f39d828426df60876f00a5d2164eb50879b5c9 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Mon, 20 Jan 2020 22:41:41 +0200 Subject: MLO, XtraCompsModelInfo, MovingThing, Solid --- src/entities/Solid.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/entities/Solid.h (limited to 'src/entities/Solid.h') 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 -- cgit v1.2.3