mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-06 05:09:08 +01:00
9 lines
196 B
Java
9 lines
196 B
Java
|
package de.ellpeck.naturesaura.reg;
|
||
|
|
||
|
import de.ellpeck.naturesaura.data.ItemModelGenerator;
|
||
|
|
||
|
public interface ICustomItemModel {
|
||
|
|
||
|
void generateCustomItemModel(ItemModelGenerator generator);
|
||
|
}
|