19 lines
302 B
Go
19 lines
302 B
Go
package client
|
|
|
|
import "git.konjactw.dev/falloutBot/go-mc/chat"
|
|
|
|
//codec:gen
|
|
type ServerLinkData struct {
|
|
IsBuiltin bool
|
|
//opt:enum:IsBuiltin:true
|
|
Type int32 `mc:"VarInt"`
|
|
//opt:enum:IsBuiltin:false
|
|
Name chat.Message
|
|
URL string
|
|
}
|
|
|
|
//codec:gen
|
|
type ServerLinks struct {
|
|
Links []ServerLinkData
|
|
}
|