mirror of
https://github.com/jwetzell/artnet-go.git
synced 2026-07-26 10:28:41 +00:00
12 lines
146 B
Go
12 lines
146 B
Go
package artnet
|
|
|
|
import (
|
|
"encoding"
|
|
)
|
|
|
|
type ArtNetPacket interface {
|
|
encoding.BinaryUnmarshaler
|
|
encoding.BinaryMarshaler
|
|
GetOpCode() uint16
|
|
}
|