net.anotheria.anosite.wizard.api.WizardAPIFactory Maven / Gradle / Ivy
package net.anotheria.anosite.wizard.api;
import net.anotheria.anoplass.api.APIFactory;
/**
* WizardAPI factory.
*
* @author h3ll
*/
public class WizardAPIFactory implements APIFactory {
@Override
public WizardAPI createAPI() {
return new BaseWizardAPIImpl();
}
}