blob: 10fb1da5fdea76570b2ed7a5db3773910b7f82f6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "EntityTile_SPU.h"
class ChestTile_SPU : public EntityTile_SPU
{
public:
ChestTile_SPU(int id) : EntityTile_SPU(id) {}
virtual bool isSolidRender(bool isServerLevel = false) { return false; }
virtual int getRenderShape() { return Tile_SPU::SHAPE_ENTITYTILE_ANIMATED; }
};
|