ProcMtd.h
上传用户:tjwfgggs
上传日期:2022-06-07
资源大小:4331k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. // ProcMtd.h: interface for the ProcMtd class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROCMTD_H__0B5ED571_D954_477C_9736_F2DB10DC495E__INCLUDED_)
  5. #define AFX_PROCMTD_H__0B5ED571_D954_477C_9736_F2DB10DC495E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NineBox.h"
  10. class ProcMtd  
  11. {
  12. public:
  13. ProcMtd(NineBox* box=NULL);
  14. virtual ~ProcMtd();
  15. bool qst_ok(){return question_solved;}
  16. int Init();
  17. int solve();
  18. public:
  19. int Set_1();bool OK1;
  20. int Set_2();bool OK2;
  21. int Set_3();bool OK3;
  22. int Set_4();bool OK4;int step;
  23. int Set_5();bool OK5;int step2;
  24. int Set_6();bool OK6;
  25. int Set_7();bool OK7;
  26. int Set_8();
  27. private:
  28. bool question_solved;
  29. bool Skep_3;
  30. bool Skep_5;
  31. NineBox* box;
  32. };
  33. #endif // !defined(AFX_PROCMTD_H__0B5ED571_D954_477C_9736_F2DB10DC495E__INCLUDED_)