mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-08 18:20:36 +00:00
MLO, XtraCompsModelInfo, MovingThing, Solid
This commit is contained in:
parent
d52452e69f
commit
a9f39d8284
12 changed files with 272 additions and 23 deletions
14
src/entities/Solid.h
Normal file
14
src/entities/Solid.h
Normal 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;
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue