mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
14 lines
298 B
Java
14 lines
298 B
Java
package com.hbm.render.loader;
|
|
|
|
import java.util.List;
|
|
|
|
import net.minecraftforge.client.model.IModelCustom;
|
|
|
|
public interface IModelCustomNamed extends IModelCustom {
|
|
|
|
// A little messy, but this is the cleanest refactor, and can be useful in the future
|
|
|
|
public List<String> getPartNames();
|
|
|
|
}
|