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

personthecat.catlib.event.player.CommonPlayerEvent Maven / Gradle / Ivy

Go to download

Utilities for serialization, commands, noise generation, IO, and some new data types.

The newest version!
package personthecat.catlib.event.player;

import personthecat.catlib.event.LibEvent;

public class CommonPlayerEvent {

    public static final LibEvent LOGIN =
        LibEvent.create(callbacks -> (p, s) -> callbacks.forEach(callback -> callback.accept(p, s)));

    public static final LibEvent LOGOUT =
        LibEvent.create(callbacks -> (p, s) -> callbacks.forEach(callback -> callback.accept(p, s)));
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy