first commit
This commit is contained in:
14
Minecraft.World/TransparentTile.h
Normal file
14
Minecraft.World/TransparentTile.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include "Tile.h"
|
||||
|
||||
class TransparentTile : public Tile
|
||||
{
|
||||
protected:
|
||||
bool allowSame;
|
||||
protected:
|
||||
TransparentTile(int id, Material *material, bool allowSame, bool isSolidRender = false);
|
||||
public:
|
||||
virtual bool isSolidRender(bool isServerLevel = false);
|
||||
virtual bool shouldRenderFace(LevelSource *level, int x, int y, int z, int face);
|
||||
virtual bool blocksLight();
|
||||
};
|
||||
Reference in New Issue
Block a user