Mekanism-tilera-Edition/common/cofh/api/core/ISimpleRegistry.java
2013-11-14 21:58:32 -05:00

22 lines
421 B
Java

package cofh.api.core;
/**
* Basic interface for the Cape and Skin Registries.
*
* @author Zeldo Kavira
*
*/
public interface ISimpleRegistry {
/**
* Register a new entry.
*
* @param playerName
* The player to register.
* @param URL
* Location of the cape/skin.
* @return True if registration was successful.
*/
public boolean register(String playerName, String URL);
}