Move packets to Protocol class, general refactoring

This commit is contained in:
Pazaz 2022-04-25 02:41:31 -04:00
parent b3a5fdbec9
commit 49ccfc34ec
142 changed files with 3092 additions and 3089 deletions

View file

@ -0,0 +1,8 @@
import org.openrs2.deob.annotation.OriginalMember;
public class VarpDomain {
@OriginalMember(owner = "client!gj", name = "q", descriptor = "[I")
public static final int[] updatedVarps = new int[32];
@OriginalMember(owner = "client!fi", name = "n", descriptor = "I")
public static int updatedVarpsWriterIndex = 0;
}