go-teeworlds-protocol/messages7/net_message.go
2024-06-20 11:15:36 +08:00

12 lines
187 B
Go

package messages7
import "github.com/teeworlds-go/teeworlds/network7"
type NetMessage interface {
MsgId() int
MsgType() network7.MsgType
System() bool
Vital() bool
Pack() []byte
}