1package com.osroyale.net.packet.out;
3import com.osroyale.game.world.entity.mob.player.Player;
4import com.osroyale.net.packet.OutgoingPacket;
27public class SendExpCounterSetting
extends OutgoingPacket {
29 private final int type;
30 private final int modification;
32 public SendExpCounterSetting(
int type,
int modification) {
35 this.modification = modification;
39 public boolean encode(
Player player) {
40 builder.writeInt(type)
41 .writeInt(modification);