mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 09:38:56 +08:00
22 lines
408 B
C
22 lines
408 B
C
//========= 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
|