Files
artnet-go/packet.go
T
2026-05-14 20:21:11 -05:00

14 lines
185 B
Go

package artnet
import (
"encoding"
)
type ArtNetPacket interface {
encoding.BinaryUnmarshaler
encoding.BinaryMarshaler
GetOpCode() uint16
GetProtVer() uint16
GetID() [8]uint8
}