Newer
Older
Import / applications / Chess / AbstractChessGame.cpp
@John Ryland John Ryland on 22 Dec 2020 708 bytes import NUC files
/*
 * =====================================================================================
 *
 *       Filename:  AbstractChessGame.cpp
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  22/02/2011 11:31:50
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#include <AbstractChessGame.h>


class AbstractChessGameData
{
    QList<AbstractChessMove*> moveHistory;
    AbstractChessBoard *board;
};


AbstractChessGame::AbstractChessGame()
{
}


AbstractChessGame::~AbstractChessGame()
{
}