mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-17 12:37:46 -07:00
21 lines
333 B
C++
21 lines
333 B
C++
/**
|
|
* @file replay.h
|
|
* @ingroup GameLogic
|
|
* @ingroup Replay
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef COCKATRICE_REPLAY_H
|
|
#define COCKATRICE_REPLAY_H
|
|
|
|
#include "abstract_game.h"
|
|
|
|
class Replay : public AbstractGame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Replay(TabGame *_tab, GameReplay *_replay);
|
|
};
|
|
|
|
#endif // COCKATRICE_REPLAY_H
|