blob: 3d0892baaba9bf53943c6f8804b65b155fd1ac3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Entity.h"
class Level;
//class GlobalEntity : public Entity
class GlobalEntity : public Entity
{
public:
GlobalEntity(Level *level) : Entity( level ) {};
};
|