mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 08:34:52 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
25 lines
427 B
C++
25 lines
427 B
C++
/**
|
|
* @file game.h
|
|
* @ingroup GameLogic
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef COCKATRICE_GAME_H
|
|
#define COCKATRICE_GAME_H
|
|
|
|
#include "abstract_game.h"
|
|
|
|
#include <QObject>
|
|
|
|
class Game : public AbstractGame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Game(TabGame *tab,
|
|
QList<AbstractClient *> &_clients,
|
|
const Event_GameJoined &event,
|
|
const QMap<int, QString> &_roomGameTypes);
|
|
};
|
|
|
|
#endif // COCKATRICE_GAME_H
|