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

common.java.EventWorker.SafeEvent Maven / Gradle / Ivy

The newest version!
package common.java.EventWorker;

public class SafeEvent {
    public final Object func;
    public final int safeCode;

    public SafeEvent(int safeCode, Object func) {
        this.func = func;
        this.safeCode = safeCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy