forked from Kolyah35/minecraft-pe-0.6.1
the whole game
This commit is contained in:
15
src/world/entity/EntityFactory.h
Executable file
15
src/world/entity/EntityFactory.h
Executable file
@@ -0,0 +1,15 @@
|
||||
#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__*/
|
||||
Reference in New Issue
Block a user