This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/SoftwareDesign/Lab5/lab5_2_gomoku/gamewidget.h
2022-05-31 17:21:56 +08:00

22 lines
334 B
C++

#ifndef GAMEWIDGET_H
#define GAMEWIDGET_H
#include <QWidget>
#include "boardwidget.h"
class GameWidget : public QWidget
{
Q_OBJECT
public:
GameWidget(QWidget *parent = 0);
~GameWidget();
private:
void showWinner(int winner);
private:
BoardWidget *boardWidget;
};
#endif // GAMEWIDGET_H