Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
942 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. class CRunMap : public CDialog
  7. {
  8. // Construction
  9. public:
  10. CRunMap(CWnd* pParent = NULL); // standard constructor
  11. void SaveToIni();
  12. // Dialog Data
  13. //{{AFX_DATA(CRunMap)
  14. enum { IDD = IDD_RUNMAP };
  15. int m_iVis;
  16. BOOL m_bNoQuake;
  17. CString m_strQuakeParms;
  18. int m_iLight;
  19. int m_iQBSP;
  20. BOOL m_bHDRLight;
  21. BOOL m_bWaitForKeypress;
  22. //}}AFX_DATA
  23. BOOL m_bSwitchMode;
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CRunMap)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CRunMap)
  34. afx_msg void OnExpert();
  35. virtual BOOL OnInitDialog();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };