ec98b19ffb
(Items done!)
22 lines
421 B
Java
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);
|
|
|
|
}
|