mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-15 22:32:57 +00:00
18 lines
399 B
C++
18 lines
399 B
C++
#include "stdafx.h"
|
|
#include "PrismarineTile.h"
|
|
#include "net.minecraft.world.item.h"
|
|
#include "IconRegister.h"
|
|
|
|
PrismarineTile::PrismarineTile(int id, Material* material) : Tile(id, material)
|
|
{
|
|
}
|
|
|
|
void PrismarineTile::registerIcons(IconRegister* iconRegister)
|
|
{
|
|
icon = iconRegister->registerIcon(L"prismarine_rough");
|
|
}
|
|
|
|
Icon* PrismarineTile::getTexture(int face, int data)
|
|
{
|
|
return icon;
|
|
} |