Initial Commit with Torches. Missing LangKeys and Recipes

This commit is contained in:
2022-07-31 21:54:28 +02:00
commit ff4df5d59f
173 changed files with 2353 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package me.hypherionmc.hyperlighting.api;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.state.BlockState;
public interface LightableBlock {
/**
* Allows Torch Lighter tool to cycle the state of a clicked block
* @param worldIn
* @param state
* @param pos
*/
void toggleLight(Level worldIn, BlockState state, BlockPos pos);
}