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

📄 body.h

📁 魔域的源代码
💻 H
字号:
// Body.h: interface for the CBody class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BODY_H__BAE033E5_0C32_4D5C_9AD3_DF4607475280__INCLUDED_)
#define AFX_BODY_H__BAE033E5_0C32_4D5C_9AD3_DF4607475280__INCLUDED_

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

#include "mycom.h"
#include "VarType.h"

class CAgent;
class CBody  
{
	COM_STYLE(CBody)
protected:
	CBody();
	virtual ~CBody();

public:
	bool ProcessAction(int idxAction, VarTypeSetRef setParam);
	bool Create(CAgent* pOwner);
	void OnTimer();

protected:
	CAgent*		m_pOwner;
};

#endif // !defined(AFX_BODY_H__BAE033E5_0C32_4D5C_9AD3_DF4607475280__INCLUDED_)

⌨️ 快捷键说明

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