12 lines
187 B
Go
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
|
||
|
}
|