1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 17:37:37 +00:00
re3/src/entities/Solid.h

12 lines
165 B
C
Raw Normal View History

#pragma once
#include "Entity.h"
class CSolid : public CEntity
{
public:
CSolid(void) {
2020-01-23 15:29:36 +00:00
m_type = ENTITY_TYPE_BUILDING;
bUsesCollision = true;
}
};