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 }