buildings directory

This commit is contained in:
Sergeanur
2020-12-20 12:39:44 +02:00
parent ae7cb92437
commit affd3c6baa
6 changed files with 2 additions and 0 deletions

12
src/buildings/Solid.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include "Entity.h"
class CSolid : public CEntity
{
public:
CSolid(void) {
m_type = ENTITY_TYPE_BUILDING;
bUsesCollision = true;
}
};