mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:23:41 +00:00
12 lines
393 B
C++
12 lines
393 B
C++
#include "../Platform/stdafx.h"
|
|
#include "../Headers/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;
|
|
} |