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

📄 childview.h

📁 游戏编程精髓里的人工智能源代码很好的源代码!
💻 H
字号:
/* Copyright (C) Eric Dybsand, 2000.  * All rights reserved worldwide. * * This software is provided "as is" without express or implied * warranties. You may freely copy and compile this source into * applications you distribute provided that the copyright text * below is included in the resulting source code, for example: * "Portions Copyright (C) Eric Dybsand, 2000" */// ChildView.h : interface of the CChildView class///////////////////////////////////////////////////////////////////////////////#if !defined(AFX_CHILDVIEW_H__F6FF27CA_D314_11D3_911B_0080C8FE83CE__INCLUDED_)#define AFX_CHILDVIEW_H__F6FF27CA_D314_11D3_911B_0080C8FE83CE__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000// forward referenceclass FSMclass;/////////////////////////////////////////////////////////////////////////////// CChildView windowclass CChildView : public CWnd{// Constructionpublic:	CChildView();// Attributespublic:	FSMclass *m_pFSMclass;	// pointer to FSMclass object to use in testing// Operationspublic:// Overrides	// ClassWizard generated virtual function overrides	//{{AFX_VIRTUAL(CChildView)	protected:	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);	//}}AFX_VIRTUAL// Implementationpublic:	void CreateFSM( void );	virtual ~CChildView();	// Generated message map functionsprotected:	//{{AFX_MSG(CChildView)	afx_msg void OnPaint();	afx_msg void OnTestFSM();	//}}AFX_MSG	DECLARE_MESSAGE_MAP()};///////////////////////////////////////////////////////////////////////////////{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_CHILDVIEW_H__F6FF27CA_D314_11D3_911B_0080C8FE83CE__INCLUDED_)

⌨️ 快捷键说明

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