Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
replay.h
Go to the documentation of this file.
1
7
8#ifndef COCKATRICE_REPLAY_H
9#define COCKATRICE_REPLAY_H
10
11#include "abstract_game.h"
12
13class Replay : public AbstractGame
14{
15 Q_OBJECT
16
17public:
18 explicit Replay(TabGame *_tab, GameReplay *_replay);
19};
20
21#endif // COCKATRICE_REPLAY_H
TODO: Document this.
AbstractGame(TabGame *tab)
Definition abstract_game.cpp:5
Replay(TabGame *_tab, GameReplay *_replay)
Definition replay.cpp:5
Definition tab_game.h:57