mirror of
https://github.com/halpz/re3.git
synced 2025-01-03 19:35:27 +00:00
12 lines
154 B
C++
12 lines
154 B
C++
#pragma once
|
|
|
|
#include "Entity.h"
|
|
|
|
class CSolid : public CEntity
|
|
{
|
|
public:
|
|
CSolid(void) {
|
|
m_type = ENTITY_TYPE_BUILDING;
|
|
bUsesCollision = true;
|
|
}
|
|
}; |