diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/shared/viewport_panel_names.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/shared/viewport_panel_names.h')
| -rw-r--r-- | game/shared/viewport_panel_names.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/game/shared/viewport_panel_names.h b/game/shared/viewport_panel_names.h new file mode 100644 index 0000000..b579493 --- /dev/null +++ b/game/shared/viewport_panel_names.h @@ -0,0 +1,38 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef VIEWPORT_PANEL_NAMES_H +#define VIEWPORT_PANEL_NAMES_H +#ifdef _WIN32 +#pragma once +#endif + + +// default panel name definitions +#define PANEL_ALL "all" // all current panels +#define PANEL_ACTIVE "active" // current active panel + +#define PANEL_SCOREBOARD "scores" +#define PANEL_OVERVIEW "overview" +#define PANEL_CLASS "class" +#define PANEL_TEAM "team" +#define PANEL_SPECGUI "specgui" // passive spectator elements (top/bottom bars) +#define PANEL_SPECMENU "specmenu" // active spectator elements (options menus etc) +#define PANEL_INFO "info" +#define PANEL_BUY "buy" +#define PANEL_BUY_CT "buy_ct" +#define PANEL_BUY_TER "buy_ter" +#define PANEL_BUY_EQUIP_CT "buyequip_ct" +#define PANEL_BUY_EQUIP_TER "buyequip_ter" +#define PANEL_NAV_PROGRESS "nav_progress" +#define PANEL_BUYPRESET_MAIN "buypreset_main" +#define PANEL_BUYPRESET_EDIT "buypreset_edit" +#define PANEL_INTRO "intro" + + +#define PANEL_COMMENTARY_MODELVIEWER "commentary_modelviewer" + +#endif // VIEWPORT_PANEL_NAMES_H |