mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-17 08:25:14 -06:00
Loads of refactoring, renamed Class3_Sub13 to EnumStringEntry too
This commit is contained in:
parent
e11ef7d372
commit
d2c6c19cb8
263 changed files with 2432 additions and 2436 deletions
|
|
@ -5,31 +5,31 @@ import org.openrs2.deob.annotation.OriginalMember;
|
|||
public abstract class AbstractWorld {
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "j", descriptor = "I")
|
||||
public int anInt377;
|
||||
public int country;
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "l", descriptor = "I")
|
||||
public int anInt379;
|
||||
public int players;
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "o", descriptor = "I")
|
||||
public int anInt381;
|
||||
public int flags;
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "a", descriptor = "(I)Z")
|
||||
public final boolean method437() {
|
||||
return (this.anInt381 & 0x1) != 0;
|
||||
public final boolean isMembers() {
|
||||
return (this.flags & 0x1) != 0;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "a", descriptor = "(Z)Z")
|
||||
public final boolean method439() {
|
||||
return (this.anInt381 & 0x4) != 0;
|
||||
public final boolean isPvp() {
|
||||
return (this.flags & 0x4) != 0;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "c", descriptor = "(I)Z")
|
||||
public final boolean method441() {
|
||||
return (this.anInt381 & 0x8) != 0;
|
||||
public final boolean isLootShare() {
|
||||
return (this.flags & 0x8) != 0;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!gj", name = "d", descriptor = "(I)Z")
|
||||
public final boolean method442() {
|
||||
return (this.anInt381 & 0x2) != 0;
|
||||
public final boolean isQuickChat() {
|
||||
return (this.flags & 0x2) != 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue