All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.network.protocol.ScriptCustomEventPacket Maven / Gradle / Ivy

package cn.nukkit.network.protocol;

import lombok.ToString;

/**
 * Deprecated since v594
 */
@Deprecated(since = "1.20.10-r1")
@ToString
public class ScriptCustomEventPacket extends DataPacket {
    
    public String eventName;
    public byte[] eventData;

    @Override
    public byte pid() {
        return ProtocolInfo.SCRIPT_CUSTOM_EVENT_PACKET;
    }

    @Override
    public void decode() {
        this.eventName = this.getString();
        this.eventData = this.getByteArray();
    }

    @Override
    public void encode() {
        this.reset();
        this.putString(this.eventName);
        this.putByteArray(this.eventData);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy