mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
11 lines
302 B
Java
11 lines
302 B
Java
package de.ellpeck.naturesaura.reg;
|
|
|
|
import net.minecraft.world.level.block.entity.BlockEntity;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
public interface ITESRProvider<T extends BlockEntity> {
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
void registerTESR();
|
|
}
|