buildings directory

# Conflicts:
#	premake5.lua
This commit is contained in:
Sergeanur
2020-12-20 12:39:44 +02:00
parent 6697ab6b63
commit be92b57b54
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;
}
};