blob: 70c8ce80c1c41f1d915d60af6e25ccd697afd7a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package jp.plusplus.fbs.packet;
import cpw.mods.fml.common.network.ByteBufUtils;
import cpw.mods.fml.common.network.simpleimpl.IMessage;
import io.netty.buffer.ByteBuf;
import net.minecraft.entity.player.EntityPlayer;
/**
* Createdby pluslus_Fon 2015/06/05.
*/
public class MessagePlayerJoinInAnnouncement implements IMessage {
private String uuid;
public MessagePlayerJoinInAnnouncement(){}
public MessagePlayerJoinInAnnouncement(EntityPlayer player) {
this.uuid = player.getGameProfile().getId().toString();
}
@Override
public void fromBytes(ByteBuf buf) {
this.uuid = ByteBufUtils.readUTF8String(buf);
}
@Override
public void toBytes(ByteBuf buf) {
ByteBufUtils.writeUTF8String(buf, this.uuid);
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
}
|