Match.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // Match.h: interface for the Match class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MATCH_H__7C3C9570_E05F_490C_B4BA_B5737972E3C3__INCLUDED_)
  5. #define AFX_MATCH_H__7C3C9570_E05F_490C_B4BA_B5737972E3C3__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #define LW 19
  10. class Match  
  11. {
  12. public:
  13. Match();
  14. virtual ~Match();
  15. public:
  16. int chessboard[LW][LW]; //0表示没有子落下;1表示黑子落下;2表示白子落下
  17. public:
  18. BOOL CanDown(int x,int y,int who);
  19. BOOL IsWin(int who,int pos[5][2]);
  20. void Clear();
  21. };
  22. #endif // !defined(AFX_MATCH_H__7C3C9570_E05F_490C_B4BA_B5737972E3C3__INCLUDED_)