Major client code cleanup

This commit is contained in:
Woah 2021-03-24 15:51:22 -04:00
parent 3d910c97a1
commit 499abd7009
235 changed files with 29482 additions and 29717 deletions

View file

@ -75,13 +75,13 @@ public enum CS2AsmOpcodes {
POP_TO_PAGED_RAM(46);
private int op;
private final int op;
public int getOp() {
return this.op;
}
private CS2AsmOpcodes(int op) {
CS2AsmOpcodes(int op) {
this.op = op;
}
}