ViaProxy/src/main/java/net/raphimc/viaproxy/plugins/events/types/ITyped.java

13 lines
144 B
Java

package net.raphimc.viaproxy.plugins.events.types;
public interface ITyped {
Type getType();
enum Type {
PRE, POST
}
}