electrodynamics/APIs/icbm/api/ITier.java
2013-07-22 18:24:55 -04:00

24 lines
367 B
Java

package icbm.api;
/**
* 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);
}