All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.hendrixshen.magiclib.impl.event.minecraft.DedicatedServerEvent Maven / Gradle / Ivy

There is a newer version: 0.6.59
Show newest version
package top.hendrixshen.magiclib.impl.event.minecraft;

import org.jetbrains.annotations.NotNull;
import top.hendrixshen.magiclib.api.event.Event;
import top.hendrixshen.magiclib.api.event.minecraft.DedicatedServerListener;

import java.util.List;

public class DedicatedServerEvent {
    public static class PostInitEvent implements Event {
        @Override
        public void dispatch(@NotNull List listeners) {
            listeners.forEach(DedicatedServerListener::postServerInit);
        }

        @Override
        public Class getListenerType() {
            return DedicatedServerListener.class;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy