go-teeworlds-protocol/messages7/net_message.go

12 lines
187 B
Go
Raw Normal View History

2024-06-20 03:08:52 +00:00
package messages7
import "github.com/teeworlds-go/teeworlds/network7"
type NetMessage interface {
MsgId() int
MsgType() network7.MsgType
System() bool
Vital() bool
Pack() []byte
}