fibs/event.go

23 lines
243 B
Go

package fibs
type EventBoardState struct {
S []string
V []int
}
type EventMove struct {
Player int
From int
To int
}
type EventMessage struct {
Message string
}
type EventDraw struct{}
type EventWho struct {
Who []*WhoInfo
}