mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-20 19:02:54 +00:00
10 lines
207 B
C++
10 lines
207 B
C++
#pragma once
|
|
#include "minecraft/world/entity/Entity.h"
|
|
|
|
class Level;
|
|
|
|
// class GlobalEntity : public Entity
|
|
class GlobalEntity : public Entity {
|
|
public:
|
|
GlobalEntity(Level* level) : Entity(level) {};
|
|
}; |