RuneHive-Game
Loading...
Searching...
No Matches
PrivateChatMessage.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.mob.player.relations;
2
3public 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}