Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#if !defined(AFX_TEXTUREPROPPAGE_H__9EBEB54F_FF0A_48B2_861A_96AB51301286__INCLUDED_)
|
|
#define AFX_TEXTUREPROPPAGE_H__9EBEB54F_FF0A_48B2_861A_96AB51301286__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// TexturePropPage.h : header file
|
|
//
|
|
|
|
#include <imagelib\image.h>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTexturePropPage dialog
|
|
|
|
class CTexturePropPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CTexturePropPage)
|
|
|
|
// Construction
|
|
public:
|
|
int SetImageData(Image *);
|
|
CTexturePropPage();
|
|
~CTexturePropPage();
|
|
Stuff::Page *m_pPage;
|
|
CStringList m_listProp;
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CTexturePropPage)
|
|
enum { IDD = IDD_TEXTUREPROPPAGE };
|
|
CListBox m_wndPropList;
|
|
CListBox m_wndList;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CTexturePropPage)
|
|
public:
|
|
virtual BOOL OnSetActive();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CTexturePropPage)
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_TEXTUREPROPPAGE_H__9EBEB54F_FF0A_48B2_861A_96AB51301286__INCLUDED_)
|