MCPcopy Create free account
hub / github.com/XMuli/ChineseChess / ChessStep

Class ChessStep

ChessStep.h:11–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9#include <QObject>
10
11class ChessStep : public QObject
12{
13 Q_OBJECT
14public:
15 explicit ChessStep(QObject *parent = 0);
16 ~ChessStep();
17
18 int m_nMoveID; // 移动棋子ID
19 int m_nKillID; // 将要被击杀的棋子ID
20 int m_nRowFrom; // 原位置的行
21 int m_nColFrom; // 原位置的列
22 int m_nRowTo; // 目的位置的行
23 int m_nnColTo; // 目的位置的列
24};
25
26#endif // CHESSSTEP_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected