Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestStatus

package l2p.gameserver.clientpackets;

import java.util.logging.Logger;

import l2p.gameserver.serverpackets.SendStatus;

public final class RequestStatus extends L2GameClientPacket
{
  static Logger _log = Logger.getLogger(RequestStatus.class.getName());

  @Override
  protected void readImpl()
  {
  }

  @Override
  protected void runImpl()
  {
    getClient().close(new SendStatus());
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestStatus

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.