mirror of
https://github.com/jwetzell/artnet-go.git
synced 2026-08-12 10:33:40 +00:00
14 lines
185 B
Go
14 lines
185 B
Go
package artnet
|
|
|
|
import (
|
|
"encoding"
|
|
)
|
|
|
|
type ArtNetPacket interface {
|
|
encoding.BinaryUnmarshaler
|
|
encoding.BinaryMarshaler
|
|
GetOpCode() uint16
|
|
GetProtVer() uint16
|
|
GetID() [8]uint8
|
|
}
|