summaryrefslogtreecommitdiffstats
path: root/src/entities/Solid.h
blob: 4ca800c2aef3f884bdc1558cc2cb9f92157a60cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "Entity.h"

class CSolid : public CEntity
{
public:
	CSolid(void) {
		m_type = ENTITY_TYPE_BUILDING;
		bUsesCollision = true;
	}
};