MLO, XtraCompsModelInfo, MovingThing, Solid

This commit is contained in:
Sergeanur
2020-01-20 22:41:41 +02:00
parent d52452e69f
commit a9f39d8284
12 changed files with 272 additions and 23 deletions

14
src/entities/Solid.h Normal file
View File

@ -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;
}
};