One day I will learn to include all required classes in the commit.

This commit is contained in:
RainWarrior 2016-02-02 12:42:41 +03:00
parent 3bdc75ad49
commit bfa17d2f0d
1 changed files with 10 additions and 0 deletions

View File

@ -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);
}