1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-07-01 02:53:48 +00:00
re3/src/entities/Solid.h

14 lines
206 B
C
Raw Normal View History

#pragma once
#include "Entity.h"
class CSolid : public CEntity
{
public:
CSolid(void) {
bRemoveFromWorld = true;
bHasHitWall = false;
bImBeingRendered = false;
m_flagE2 = true;
}
};