electrodynamics/APIs/icbm/api/ITier.java

25 lines
367 B
Java
Raw Normal View History

package icbm.api;
/**
* This interface should be applied to all things that has a tier/level.
*
* @author Calclavia
*
*/
2013-07-23 00:24:55 +02:00
public interface ITier
{
/**
* Gets the tier of this object
*
* @return - The tier
*/
public int getTier();
/**
* Sets the tier of the object
*
2013-07-23 00:24:55 +02:00
* @param tier - The tier to be set
*/
public void setTier(int tier);
}