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

📄 propitem.cpp

📁 RPG四大编辑器:场景/道具/角色/地图四大编辑器源代码 vc++ 6.0
💻 CPP
字号:
// PropItem.cpp: implementation of the CPropItem class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "PropEdt.h"
#include "PropItem.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPropItem::CPropItem()
{
	memset(m_cName, 0, 32);
	memcpy(m_cScriptFileName, m_cName, 32);
	m_dwType = 0;
}

CPropItem::~CPropItem()
{

}

⌨️ 快捷键说明

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