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.
57 lines
1.5 KiB
C++
57 lines
1.5 KiB
C++
// MapShifterDlg.h : header file
|
|
//
|
|
|
|
#if !defined(AFX_MAPSHIFTERDLG_H__6192E456_F12F_43F1_9509_7CB3857AB8C8__INCLUDED_)
|
|
#define AFX_MAPSHIFTERDLG_H__6192E456_F12F_43F1_9509_7CB3857AB8C8__INCLUDED_
|
|
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMapShifterDlg dialog
|
|
|
|
class CMapShifterDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
void GetMapSize(CString map_name,float *xsize,float *zsize);
|
|
void ProcessMap(CString map_name);
|
|
CMapShifterDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CMapShifterDlg)
|
|
enum { IDD = IDD_MAPSHIFTER_DIALOG };
|
|
CListBox m_MapList;
|
|
//}}AFX_DATA
|
|
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMapShifterDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CMapShifterDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
virtual void OnCancel();
|
|
virtual void OnOK();
|
|
afx_msg void OnShift();
|
|
afx_msg void OnSelectall();
|
|
afx_msg void OnClear();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_MAPSHIFTERDLG_H__6192E456_F12F_43F1_9509_7CB3857AB8C8__INCLUDED_)
|