mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
9 lines
200 B
Java
9 lines
200 B
Java
|
package de.ellpeck.naturesaura.reg;
|
||
|
|
||
|
import de.ellpeck.naturesaura.data.BlockStateGenerator;
|
||
|
|
||
|
public interface ICustomBlockState {
|
||
|
|
||
|
void generateCustomBlockState(BlockStateGenerator generator);
|
||
|
}
|