Premier commit - Extrait du pauvre jar après perte des sources

This commit is contained in:
Mysaa
2021-05-28 22:57:57 +02:00
commit 29ef10e9f9
54 changed files with 1355 additions and 0 deletions
@@ -0,0 +1,12 @@
package com.bernard.torch.api;
import net.minecraft.item.ItemStack;
public abstract interface ITorchRechargable
{
public abstract void recharge(ItemStack paramItemStack, int paramInt);
public abstract int getLuxNedded(ItemStack paramItemStack);
}