blob: 26eeb406fe50c0dd8cf352d12f05d20c9ca10612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "Tile_SPU.h"
class WebTile_SPU : public Tile_SPU
{
public:
WebTile_SPU(int id) : Tile_SPU(id) {}
bool isSolidRender(bool isServerLevel = false) { return false;}
int getRenderShape() { return Tile_SPU::SHAPE_CROSS_TEXTURE; }
bool blocksLight() { return false;}
bool isCubeShaped() { return false;}
};
|