2022-04-30 09:41:17 -04:00
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2022
// www.magicbane.com
package engine.net.client.msg.group ;
import engine.net.AbstractConnection ;
import engine.net.ByteBufferReader ;
import engine.net.ByteBufferWriter ;
import engine.net.client.Protocol ;
import engine.net.client.msg.ClientNetMsg ;
public class LeaveGroupMsg extends ClientNetMsg {
2023-07-15 09:23:48 -04:00
private int unknown01 ;
private int unknown02 ;
private int unknown03 ;
private int unknown04 ;
/**
* This is the general purpose constructor.
*/
public LeaveGroupMsg ( ) {
super ( Protocol . LEAVEGROUP ) ;
}
/**
* This constructor is used by NetMsgFactory. It attempts to deserialize the ByteBuffer into a message. If a BufferUnderflow occurs (based on reading past the limit) then this constructor Throws that Exception to the caller.
*/
public LeaveGroupMsg ( AbstractConnection origin , ByteBufferReader reader ) {
super ( Protocol . LEAVEGROUP , origin , reader ) ;
}
/**
* Serializes the subclass specific items to the supplied ByteBufferWriter.
*/
@Override
protected void _serialize ( ByteBufferWriter writer ) {
writer . putInt ( this . unknown01 ) ;
writer . putInt ( this . unknown02 ) ;
writer . putInt ( this . unknown03 ) ;
writer . putInt ( this . unknown04 ) ;
}
/**
* Deserializes the subclass specific items from the supplied ByteBufferReader.
*/
@Override
protected void _deserialize ( ByteBufferReader reader ) {
this . unknown01 = reader . getInt ( ) ;
this . unknown02 = reader . getInt ( ) ;
this . unknown03 = reader . getInt ( ) ;
this . unknown04 = reader . getInt ( ) ;
}
/**
* @return the unknown01
*/
public int getUnknown01 ( ) {
return unknown01 ;
}
/**
* @param unknown01 the unknown01 to set
*/
public void setUnknown01 ( int unknown01 ) {
this . unknown01 = unknown01 ;
}
/**
* @return the unknown02
*/
public int getUnknown02 ( ) {
return unknown02 ;
}
/**
* @param unknown02 the unknown02 to set
*/
public void setUnknown02 ( int unknown02 ) {
this . unknown02 = unknown02 ;
}
/**
* @return the unknown03
*/
public int getUnknown03 ( ) {
return unknown03 ;
}
/**
* @param unknown03 the unknown03 to set
*/
public void setUnknown03 ( int unknown03 ) {
this . unknown03 = unknown03 ;
}
/**
* @return the unknown04
*/
public int getUnknown04 ( ) {
return unknown04 ;
}
/**
* @param unknown04 the unknown04 to set
*/
public void setUnknown04 ( int unknown04 ) {
this . unknown04 = unknown04 ;
}
2022-04-30 09:41:17 -04:00
}