FIBS (online backgammon) client library
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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{}
|
|
|