mirror of
https://github.com/halpz/re3.git
synced 2025-01-23 06:41:00 +00:00
14 lines
206 B
C
14 lines
206 B
C
|
#pragma once
|
||
|
|
||
|
#include "Entity.h"
|
||
|
|
||
|
class CSolid : public CEntity
|
||
|
{
|
||
|
public:
|
||
|
CSolid(void) {
|
||
|
bRemoveFromWorld = true;
|
||
|
bHasHitWall = false;
|
||
|
bImBeingRendered = false;
|
||
|
m_flagE2 = true;
|
||
|
}
|
||
|
};
|