16 lines
172 B
C++
16 lines
172 B
C++
|
#include "entity.h"
|
||
|
|
||
|
// These are in a .cpp file solely because inline destructors can cause
|
||
|
// problems for some compilers
|
||
|
|
||
|
Entity::Entity()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
Entity::~Entity()
|
||
|
{
|
||
|
|
||
|
}
|