15 lines
298 B
Java
15 lines
298 B
Java
|
package cofh.api.core;
|
||
|
|
||
|
/**
|
||
|
* Access to the Cape and Skin Registries of CoFH Core.
|
||
|
*
|
||
|
* @author Zeldo Kavira
|
||
|
*
|
||
|
*/
|
||
|
public class RegistryAccess {
|
||
|
|
||
|
public static ISimpleRegistry capeRegistry = new NullSimpleRegistry();
|
||
|
public static ISimpleRegistry skinRegistry = new NullSimpleRegistry();
|
||
|
|
||
|
}
|