Some tile improvements and added ItemFrame tile

This commit is contained in:
Dylan K. Taylor
2016-11-27 14:05:42 +00:00
parent 50d59619a6
commit 90957cd908
7 changed files with 137 additions and 33 deletions

View File

@ -33,14 +33,16 @@ use pocketmine\nbt\tag\IntTag;
use pocketmine\nbt\tag\StringTag;
abstract class Tile extends Position{
const SIGN = "Sign";
const CHEST = "Chest";
const FURNACE = "Furnace";
const FLOWER_POT = "FlowerPot";
const MOB_SPAWNER = "MobSpawner";
const SKULL = "Skull";
const BREWING_STAND = "BrewingStand";
const CHEST = "Chest";
const ENCHANT_TABLE = "EnchantTable";
const FLOWER_POT = "FlowerPot";
const FURNACE = "Furnace";
const ITEM_FRAME = "ItemFrame";
const MOB_SPAWNER = "MobSpawner";
const SIGN = "Sign";
const SKULL = "Skull";
public static $tileCount = 1;