RuneHive-Game
Loading...
Searching...
No Matches
PrivateChatMessage.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.mob.player.relations;
2
3
public
class
PrivateChatMessage
{
4
5
private
final
String
decompressed
;
6
7
private
final
byte
[]
compressed
;
8
9
public
PrivateChatMessage
(String
decompressed
,
byte
[]
compressed
) {
10
this.decompressed =
decompressed
;
11
this.compressed =
compressed
;
12
}
13
14
public
String
getDecompressed
() {
15
return
decompressed
;
16
}
17
18
public
byte
[]
getCompressed
() {
19
return
compressed
;
20
}
21
22
}
com.runehive.game.world.entity.mob.player.relations.PrivateChatMessage.PrivateChatMessage
PrivateChatMessage(String decompressed, byte[] compressed)
Definition
PrivateChatMessage.java:9
com.runehive.game.world.entity.mob.player.relations.PrivateChatMessage.decompressed
final String decompressed
Definition
PrivateChatMessage.java:5
com.runehive.game.world.entity.mob.player.relations.PrivateChatMessage.getDecompressed
String getDecompressed()
Definition
PrivateChatMessage.java:14
com.runehive.game.world.entity.mob.player.relations.PrivateChatMessage.getCompressed
byte[] getCompressed()
Definition
PrivateChatMessage.java:18
com.runehive.game.world.entity.mob.player.relations.PrivateChatMessage.compressed
final byte[] compressed
Definition
PrivateChatMessage.java:7