Files
minecraft-pe-0.6.1/src/world/entity/EntityFactory.h
2026-03-02 22:04:18 +03:00

16 lines
378 B
C++
Executable File

#ifndef NET_MINECRAFT_WORLD_ENTITY__EntityFactory_H__
#define NET_MINECRAFT_WORLD_ENTITY__EntityFactory_H__
class Level;
class Entity;
class CompoundTag;
class EntityFactory
{
public:
static Entity* CreateEntity(int typeId, Level* level);
static Entity* loadEntity(CompoundTag* tag, Level* level);
};
#endif /*NET_MINECRAFT_WORLD_ENTITY__EntityFactory_H__*/