1 package fibs 2 3 type EventBoardState struct { 4 S []string 5 V []int 6 } 7 8 type EventMove struct { 9 Player int 10 From int 11 To int 12 } 13 14 type EventMessage struct { 15 Message string 16 } 17 18 type EventDraw struct{} 19 20 type EventWho struct { 21 Who []*WhoInfo 22 } 23