diff options
Diffstat (limited to 'mp/src/public/modes.h')
| -rw-r--r-- | mp/src/public/modes.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mp/src/public/modes.h b/mp/src/public/modes.h new file mode 100644 index 00000000..71a21878 --- /dev/null +++ b/mp/src/public/modes.h @@ -0,0 +1,21 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+#if !defined( MODES_H )
+#define MODES_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+typedef struct vmode_s
+{
+ int width;
+ int height;
+ int bpp;
+ int refreshRate;
+} vmode_t;
+
+#endif // MODES_H
|