summaryrefslogtreecommitdiff
path: root/hammer/optionproperties.h
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /hammer/optionproperties.h
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'hammer/optionproperties.h')
-rw-r--r--hammer/optionproperties.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/hammer/optionproperties.h b/hammer/optionproperties.h
new file mode 100644
index 0000000..62d497e
--- /dev/null
+++ b/hammer/optionproperties.h
@@ -0,0 +1,60 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//
+//=============================================================================//
+// OptionProperties.h : header file
+//
+
+/////////////////////////////////////////////////////////////////////////////
+// COptionProperties
+
+#include "OPTGeneral.h"
+#include "OPTView2D.h"
+#include "OPTView3D.h"
+#include "OPTTextures.h"
+#include "OPTConfigs.h"
+#include "OPTBuild.h"
+
+class COptionProperties : public CPropertySheet
+{
+ DECLARE_DYNAMIC(COptionProperties)
+
+// Construction
+public:
+ COptionProperties(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
+ COptionProperties(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
+
+// Attributes
+public:
+ COPTGeneral General;
+ COPTView2D View2D;
+ COPTView3D View3D;
+ COPTTextures Textures;
+ COPTConfigs Configs;
+ COPTBuild Build;
+
+// Operations
+public:
+
+// Overrides
+ // ClassWizard generated virtual function overrides
+ //{{AFX_VIRTUAL(COptionProperties)
+ //}}AFX_VIRTUAL
+
+// Implementation
+public:
+ virtual ~COptionProperties();
+ void DoStandardInit();
+
+ // Generated message map functions
+protected:
+ //{{AFX_MSG(COptionProperties)
+ afx_msg void OnClose();
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+};
+
+/////////////////////////////////////////////////////////////////////////////