DragonNest/Client/PatchBuilder/NewProfile.h
2024-12-19 09:48:26 +08:00

23 lines
395 B
C++

#pragma once
// CNewProfile dialog
class CNewProfile : public CDialog
{
DECLARE_DYNAMIC(CNewProfile)
public:
CNewProfile(CWnd* pParent = NULL); // standard constructor
virtual ~CNewProfile();
// Dialog Data
enum { IDD = IDD_NEW_PROFILE };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CString m_szProfileName;
};