Newer
Older
Import / applications / Chess / main.cpp
@John John on 29 Dec 2020 738 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       Filename:  main.cpp
 *
 *    Description:  ChessBoard App/Library - Display a chess board and pieces
 *
 *        Version:  1.0
 *        Created:  21/02/2011 07:20:52
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#include <QApplication>
#include <QtChessBoard.h>


int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QtChessBoard board;
    board.resize(300, 300);
    board.show();

    return app.exec();
}