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

📄 userset.h

📁 利用人工智能的经典算法实现迷宫游戏;里面的A星(a*)算法可以很方便的移植到应用程序中
💻 H
字号:
#if !defined(AFX_USERSET_H__E6641D90_182D_4A5C_B94D_77B3F6B50D94__INCLUDED_)
#define AFX_USERSET_H__E6641D90_182D_4A5C_B94D_77B3F6B50D94__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// UserSet.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// UserSet dialog

class UserSet : public CDialog
{
// Construction
public:
	UserSet(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(UserSet)
	enum { IDD = IDD_DIALOG1 };
	UINT	m_UserSetRow;
	UINT	m_UserSetStartRow;
	UINT	m_UserSetStartCol;
	UINT	m_UserSetCol;
	UINT	m_UserSetGoalRow;
	int		m_UserSetGoalCol;
	int     m_step;
	UINT	m_UserSetSpeed;
	float	m_UserSetWallNum;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(UserSet)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(UserSet)
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_USERSET_H__E6641D90_182D_4A5C_B94D_77B3F6B50D94__INCLUDED_)

⌨️ 快捷键说明

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