One day I will learn to include all required classes in the commit.
This commit is contained in:
parent
3bdc75ad49
commit
bfa17d2f0d
1 changed files with 10 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
package net.minecraftforge.client.model;
|
||||
|
||||
/**
|
||||
* Implement this if the model can process "smooth_lighting" or "gui3d" attributes from the json.
|
||||
*/
|
||||
public interface IModelSimpleProperties<M extends IModelSimpleProperties<M>> extends IModel
|
||||
{
|
||||
M smoothLighting(boolean value);
|
||||
M gui3d(boolean value);
|
||||
}
|
Loading…
Reference in a new issue