Added more render methods to IModelCustom interface.

This commit is contained in:
RedmenNL 2013-06-26 15:20:14 +02:00 committed by MachineMuse
parent ca011729d3
commit 2c9e11299e
1 changed files with 2 additions and 0 deletions

View File

@ -5,5 +5,7 @@ package net.minecraftforge.client.model;
public interface IModelCustom {
String getType();
void renderAll();
void renderOnly(String... groupNames);
void renderPart(String partName);
void renderAllExcept(String... excludedGroupNames);
}