Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
game.h
Go to the documentation of this file.
1
6
7#ifndef COCKATRICE_GAME_H
8#define COCKATRICE_GAME_H
9
10#include "abstract_game.h"
11
12#include <QObject>
13
14class Game : public AbstractGame
15{
16 Q_OBJECT
17
18public:
20 QList<AbstractClient *> &_clients,
21 const Event_GameJoined &event,
22 const QMap<int, QString> &_roomGameTypes);
23};
24
25#endif // COCKATRICE_GAME_H
TODO: Document this.
TabGame * tab
Definition abstract_game.h:27
AbstractGame(TabGame *tab)
Definition abstract_game.cpp:5
Game(TabGame *tab, QList< AbstractClient * > &_clients, const Event_GameJoined &event, const QMap< int, QString > &_roomGameTypes)
Definition game.cpp:7
Definition tab_game.h:57