⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ltldoc.h

📁 一个实现连连看游戏功能的程序。8*8的图片大小
💻 H
字号:
// LTLDoc.h : interface of the CLTLDoc class
//
/////////////////////////////////////////////////////////////////////////////


#if !defined(AFX_LTLDOC_H__191FDDD5_B0C6_43C5_8155_EEE8FFBDF80C__INCLUDED_)
#define AFX_LTLDOC_H__191FDDD5_B0C6_43C5_8155_EEE8FFBDF80C__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "afxtempl.h"

class CLTLDoc : public CDocument
{
protected: // create from serialization only
	CLTLDoc();
	DECLARE_DYNCREATE(CLTLDoc)

// Attributes
public:
	bool IfLine(const CPoint& pt1, const CPoint& pt2, CPoint* Path);
	void Init();

// Operations
public:	
    CBitmap m_Bitmap;
	CArray <CPoint, CPoint&> m_pointA;
	char PicMark[10][14];
	int disappear;
	int overflag;                     //结束标志 不再刷新显示 不过程序仍执行中 PicMark不变
	CPoint Path[2];
	double TimeUsed;
	int pos;
	// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLTLDoc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CLTLDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CLTLDoc)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LTLDOC_H__191FDDD5_B0C6_43C5_8155_EEE8FFBDF80C__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -