mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-30 18:43:55 -07:00
single player improvements
This commit is contained in:
parent
82e4f9e19d
commit
c4c1723205
11 changed files with 121 additions and 29 deletions
|
|
@ -27,6 +27,7 @@
|
|||
class TabSupervisor;
|
||||
class RemoteClient;
|
||||
class LocalClient;
|
||||
class LocalServer;
|
||||
|
||||
class MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
|
|
@ -37,6 +38,7 @@ private slots:
|
|||
void serverError(ResponseCode r);
|
||||
void socketError(const QString &errorStr);
|
||||
void protocolVersionMismatch(int localVersion, int remoteVersion);
|
||||
void localGameEnded();
|
||||
|
||||
void actConnect();
|
||||
void actDisconnect();
|
||||
|
|
@ -56,7 +58,7 @@ private:
|
|||
TabSupervisor *tabSupervisor;
|
||||
|
||||
RemoteClient *client;
|
||||
QList<AbstractClient *> localClients;
|
||||
LocalServer *localServer;
|
||||
public:
|
||||
MainWindow(QWidget *parent = 0);
|
||||
protected:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue