Initial commit

This commit is contained in:
Melledy
2022-04-17 05:43:07 -07:00
commit 7925d1cda3
354 changed files with 20869 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package emu.grasscutter.net.packet;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Opcodes {
/** Opcode for the packet/handler */
int value();
/** HANDLER ONLY - will disable this handler from being registered */
boolean disabled() default false;
}