Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
#if !defined(AFX_DLGTRIGGERPROPERTY_H__DEE2F4C9_D2E7_4CA8_A9E9_29E42EBA72B5__INCLUDED_)
|
|
#define AFX_DLGTRIGGERPROPERTY_H__DEE2F4C9_D2E7_4CA8_A9E9_29E42EBA72B5__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// DlgTriggerProperty.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDlgTriggerProperty dialog
|
|
|
|
class CDlgTriggerProperty : public CDialog
|
|
{
|
|
void ConfirmSoundDirectory( CString &, CString & );
|
|
|
|
protected:
|
|
int m_iCurSel;
|
|
int m_iEventType;
|
|
|
|
protected:
|
|
int EventType();
|
|
// Construction
|
|
public:
|
|
CDlgTriggerProperty(CWnd* pParent = NULL); // standard constructor
|
|
|
|
|
|
int GetEventType() { return m_iEventType; }
|
|
void SetEventType( int );
|
|
// Dialog Data
|
|
//{{AFX_DATA(CDlgTriggerProperty)
|
|
enum { IDD = IDD_DIALOG_TRIGGERPROPERTY };
|
|
CComboBox m_EventType;
|
|
CString m_strEventArg;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CDlgTriggerProperty)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CDlgTriggerProperty)
|
|
afx_msg void OnButtonBrowse();
|
|
virtual BOOL OnInitDialog();
|
|
virtual void OnOK();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_DLGTRIGGERPROPERTY_H__DEE2F4C9_D2E7_4CA8_A9E9_29E42EBA72B5__INCLUDED_)
|