QGobang/QGobangTool/include/QGobangRule.h

34 lines
968 B
C
Raw Normal View History

2025-07-24 04:08:36 +08:00
#ifndef QGOBANGRULE_H
#define QGOBANGRULE_H
/***************************************************************
* @file QGobangRule.h
* @author Art_Sakura
* @date 2025-07-24
* @brief
* , 便
***************************************************************/
namespace NS_QGobangTool
{
class QGobangRule
{
public:
QGobangRule();
/**
* @brief gameCheckWincheckWin
* @param player uid
* @param x X
* @param y Y
* @param board 0: 1: 2:
* @return
*/
bool gameCheckWincheckWin(int player, int x, int y, const int board[15][15]);
};
}
#endif // QGOBANGRULE_H