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

com.jacobtread.blaze.packet.NotifyPacket.kt Maven / Gradle / Ivy

The newest version!
package com.jacobtread.blaze.packet

import com.jacobtread.blaze.tdf.Tdf

class NotifyPacket(
    override val component: Int,
    override val command: Int,
    override val content: List>,
) : Packet {
    override val id: Int get() = 0
    override val type: Int get() = Packet.NOTIFY_TYPE
    override val error: Int get() = 0

    override fun toString(): String {
        return "NotifyPacket (Component: $component, Command: $command, Content Count: ${content.size})"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy