4jcraft/Minecraft.World/Entities/GlobalEntity.h
2026-03-13 17:06:56 -05:00

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) {};
};