2013-07-22 07:05:40 +02:00
|
|
|
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
|
|
|
|
{
|
2013-07-22 07:05:40 +02:00
|
|
|
/**
|
|
|
|
* 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
|
2013-07-22 07:05:40 +02:00
|
|
|
*/
|
|
|
|
public void setTier(int tier);
|
|
|
|
}
|