⁠
kyle wood: Remove legacy creator
- package ${PACKAGE};
-
- import com.google.inject.Inject;
- import com.velocitypowered.api.event.lifecycle.ProxyInitializeEvent;
- import com.velocitypowered.api.event.Subscribe;
- #if(${HAS_DEPENDENCIES})
- import com.velocitypowered.api.plugin.Dependency;
- #end
- import com.velocitypowered.api.plugin.Plugin;
- import org.slf4j.Logger;
-
- public class ${CLASS_NAME} {
-
- @Inject private Logger logger;
-
- @Subscribe
- public void onProxyInitialization(ProxyInitializeEvent event) {
- }
- }