first commit
This commit is contained in:
19
Minecraft.World/MobSpawnerTile.h
Normal file
19
Minecraft.World/MobSpawnerTile.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include "EntityTile.h"
|
||||
|
||||
class Random;
|
||||
|
||||
class MobSpawnerTile : public EntityTile
|
||||
{
|
||||
friend class Tile;
|
||||
protected:
|
||||
MobSpawnerTile(int id);
|
||||
public:
|
||||
virtual shared_ptr<TileEntity> newTileEntity(Level *level);
|
||||
virtual int getResource(int data, Random *random, int playerBonusLevel);
|
||||
virtual int getResourceCount(Random *random);
|
||||
virtual bool isSolidRender(bool isServerLevel = false);
|
||||
virtual bool blocksLight();
|
||||
virtual void spawnResources(Level *level, int x, int y, int z, int data, float odds, int playerBonusLevel);
|
||||
virtual int cloneTileId(Level *level, int x, int y, int z);
|
||||
};
|
||||
Reference in New Issue
Block a user