├── .poggit.yml ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources └── config.yml └── src └── JavierLeon9966 └── ExtendedBlocks ├── Main.php ├── block ├── BlockFactory.php ├── CustomBlock.php ├── NetheriteBlock.php ├── Placeholder.php └── PlaceholderTrait.php ├── item └── ItemFactory.php └── tile ├── Placeholder.php ├── PlaceholderInterface.php └── PlaceholderTrait.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/Main.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/block/BlockFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/block/BlockFactory.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/block/CustomBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/block/CustomBlock.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/block/NetheriteBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/block/NetheriteBlock.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/block/Placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/block/Placeholder.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/block/PlaceholderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/block/PlaceholderTrait.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/item/ItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/item/ItemFactory.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/tile/Placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/tile/Placeholder.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/tile/PlaceholderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/tile/PlaceholderInterface.php -------------------------------------------------------------------------------- /src/JavierLeon9966/ExtendedBlocks/tile/PlaceholderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierLeon9966/ExtendedBlocks/HEAD/src/JavierLeon9966/ExtendedBlocks/tile/PlaceholderTrait.php --------------------------------------------------------------------------------