mirror of
https://github.com/jwetzell/artnet-go.git
synced 2026-08-03 06:17:48 +00:00
14 lines
184 B
Go
14 lines
184 B
Go
package artnet
|
|
|
|
import (
|
|
"encoding"
|
|
)
|
|
|
|
type ArtNetPacket interface {
|
|
encoding.BinaryUnmarshaler
|
|
encoding.BinaryMarshaler
|
|
GetOpCode() uint16
|
|
GetProtVer() uint16
|
|
GetID() []uint8
|
|
}
|