123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #include "stdafx.h"
- #include "Radiant.h"
- #include "TextureLoad.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CTextureLoad::CTextureLoad(CWnd* pParent )
- : CDialog(CTextureLoad::IDD, pParent)
- {
-
-
-
- }
- void CTextureLoad::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Control(pDX, IDC_LIST_TEXTURES, m_wndList);
-
- }
- BEGIN_MESSAGE_MAP(CTextureLoad, CDialog)
-
-
- END_MESSAGE_MAP()
- BOOL CTextureLoad::OnInitDialog()
- {
- CDialog::OnInitDialog();
-
-
- return TRUE;
-
- }
- void CTextureLoad::OnOK()
- {
-
-
- CDialog::OnOK();
- }
|