blob: f0f05f6553f1ed5cf4df4e68279712018f4fd6f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package uis
type Client struct {
Port int
}
func (ui *Client) Init() error {
return nil
}
func (ui *Client) Round(r int) error {
return nil
}
func (ui *Client) BroadcastWinner() {}
|