mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 14:43:36 +00:00
14 lines
339 B
C++
14 lines
339 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);
|
|
}; |