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.
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
// TexturePanel2.h: interface for the CTexturePanel2 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_TEXTUREPANEL2_H__6AC89241_8A2C_11D3_8B36_00902712C9AE__INCLUDED_)
|
|
#define AFX_TEXTUREPANEL2_H__6AC89241_8A2C_11D3_8B36_00902712C9AE__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
#include "DynaPanel.h"
|
|
#include <GosFx\GosFx.hpp>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTexturePanel dialog
|
|
|
|
class CTexturePanel2 : public CDynaPanel
|
|
{
|
|
// Construction
|
|
public:
|
|
virtual void Set(void *dat);
|
|
CTexturePanel2(CWnd* pParent = NULL); // standard constructor
|
|
Stuff::MString *Str;
|
|
virtual void OnCancel() {}
|
|
virtual void OnOK() {}
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CTexturePanel)
|
|
enum { IDD = IDD_TEXTUREPANEL };
|
|
CString m_TextureName;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CTexturePanel)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CTexturePanel)
|
|
afx_msg void OnTexturebrowse();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
#endif // !defined(AFX_TEXTUREPANEL2_H__6AC89241_8A2C_11D3_8B36_00902712C9AE__INCLUDED_)
|