func newClient(conn net.Conn, notif chan *player.NotifMsg) *Client { return &Client{ conn: cnet.NewTextConn(conn), notif: notif, close: make(chan struct{}, 1), } }
func newClientConn(conn net.Conn) *ClientConn { return &ClientConn{TextConn: cnet.NewTextConn(conn)} }