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

13 lines
144 B
Java
Raw Normal View History

2023-01-04 20:58:09 +01:00
package net.raphimc.viaproxy.plugins.events.types;
public interface ITyped {
Type getType();
enum Type {
PRE, POST
}
}