// SheetEditGCMDS.cpp : implementation file // #include "stdafx.h" #include "worldcreator.h" #include "SheetEditGCMDS.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CSheetEditGCMDS IMPLEMENT_DYNAMIC(CSheetEditGCMDS, CPropertySheet) CSheetEditGCMDS::CSheetEditGCMDS(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) { AddPage( &m_PageGCMDSProperty ); AddPage( &m_PageGCMDSSlots ); AddPage( &m_PageGCMDSMotionSheet ); AddPage( &m_PageGCMDSOutfitSet ); AddPage( &m_PageGCMDSAttachmentSet ); AddPage( &m_pageGCMDSEffectInfo ); } CSheetEditGCMDS::CSheetEditGCMDS(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(pszCaption, pParentWnd, iSelectPage) { AddPage( &m_PageGCMDSProperty ); AddPage( &m_PageGCMDSSlots ); AddPage( &m_PageGCMDSMotionSheet ); AddPage( &m_PageGCMDSOutfitSet ); AddPage( &m_PageGCMDSAttachmentSet ); AddPage( &m_pageGCMDSEffectInfo ); } CSheetEditGCMDS::~CSheetEditGCMDS() { } BEGIN_MESSAGE_MAP(CSheetEditGCMDS, CPropertySheet) //{{AFX_MSG_MAP(CSheetEditGCMDS) // NOTE - the ClassWizard will add and remove mapping macros here. //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CSheetEditGCMDS message handlers