| 9 | #include <QObject> |
| 10 | |
| 11 | class ChessStep : public QObject |
| 12 | { |
| 13 | Q_OBJECT |
| 14 | public: |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected