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