mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:33:36 +00:00
10 lines
184 B
C++
10 lines
184 B
C++
#pragma once
|
|
#include "Entity.h"
|
|
|
|
class Level;
|
|
|
|
// class GlobalEntity : public Entity
|
|
class GlobalEntity : public Entity {
|
|
public:
|
|
GlobalEntity(Level* level) : Entity(level) {};
|
|
}; |