mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-30 14:11:26 +00:00
TU19: merge Minecraft.World/Blocks
This commit is contained in:
12
Minecraft.World/Blocks/PoweredMetalTile.cpp
Normal file
12
Minecraft.World/Blocks/PoweredMetalTile.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user