mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 13:48:12 +05:00
17 lines
337 B
C++
17 lines
337 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.level.redstone.h"
|
|
#include "PoweredMetalTile.h"
|
|
|
|
PoweredMetalTile::PoweredMetalTile(int id) : MetalTile(id)
|
|
{
|
|
}
|
|
|
|
bool PoweredMetalTile::isSignalSource()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
int PoweredMetalTile::getSignal(LevelSource *level, int x, int y, int z, int dir)
|
|
{
|
|
return Redstone::SIGNAL_MAX;
|
|
} |