RuneHive-Game
Loading...
Searching...
No Matches
SendLogout.java
Go to the documentation of this file.
1package com.runehive.net.packet.out;
2
3import com.runehive.game.world.entity.mob.player.Player;
4import com.runehive.net.packet.OutgoingPacket;
5
6public class SendLogout extends OutgoingPacket {
7
8 public SendLogout() {
9 super(109, 0);
10 }
11
12 @Override
13 public boolean encode(Player player) {
14 return true;
15 }
16
17}
This class represents a character controlled by a player.
Definition Player.java:125
OutgoingPacket(int opcode, int capacity)