blob: 6c6801f2ebe347fa4b67d8e666d8e8b1fd0b3e04 [file] [log] [blame] [raw]
package universalelectricity.prefab.implement;
/**
* This interface should be applied to all things that has a tier/level.
*
* @author Calclavia
*
*/
public interface ITier
{
/**
* Gets the tier of this object
*
* @return - The tier
*/
public int getTier();
/**
* Sets the tier of the object
*
* @param tier - The tier to be set
*/
public void setTier(int tier);
}