blob: 9a9997cca585802548b52c38cb62a95623b72c6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "Tile_SPU.h"
class EggTile_SPU : public Tile_SPU
{
public:
EggTile_SPU(int id) : Tile_SPU(id) {}
virtual bool blocksLight() { return false; }
virtual bool isSolidRender(bool isServerLevel = false) { return false; }
virtual int getRenderShape() { return Tile_SPU::SHAPE_EGG; }
virtual bool shouldRenderFace(ChunkRebuildData *level, int x, int y, int z, int face) { return true; }
};
|