Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
14 lines
329 B
C++
14 lines
329 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class Random;
|
|
|
|
class LockedChestTile : public Tile
|
|
{
|
|
friend class Tile;
|
|
protected:
|
|
LockedChestTile(int id);
|
|
virtual bool mayPlace(Level *level, int x, int y, int z);
|
|
virtual void tick(Level *level, int x, int y, int z, Random *random);
|
|
void registerIcons(IconRegister *iconRegister);
|
|
}; |