diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /sp/src/game/shared/cs_achievements_and_stats_interface.h | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'sp/src/game/shared/cs_achievements_and_stats_interface.h')
| -rw-r--r-- | sp/src/game/shared/cs_achievements_and_stats_interface.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sp/src/game/shared/cs_achievements_and_stats_interface.h b/sp/src/game/shared/cs_achievements_and_stats_interface.h new file mode 100644 index 00000000..fdd6c4e8 --- /dev/null +++ b/sp/src/game/shared/cs_achievements_and_stats_interface.h @@ -0,0 +1,47 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#ifndef CSACHIEVEMENTSANDSTATSINTERFACE_H
+#define CSACHIEVEMENTSANDSTATSINTERFACE_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "achievements_and_stats_interface.h"
+#include "vgui_controls/Panel.h"
+#include "vgui_controls/PHandle.h"
+#include "vgui_controls/MenuItem.h"
+#include "vgui_controls/MessageDialog.h"
+
+#include "cs_gamestats_shared.h"
+#include "../client/cstrike/VGUI/achievement_stats_summary.h"
+#include "vgui/IInput.h"
+#include "vgui/ILocalize.h"
+#include "vgui/IPanel.h"
+#include "vgui/ISurface.h"
+#include "vgui/ISystem.h"
+#include "vgui/IVGui.h"
+
+
+#if defined(CSTRIKE_DLL) && defined(CLIENT_DLL)
+
+class CSAchievementsAndStatsInterface : public AchievementsAndStatsInterface
+{
+public:
+ CSAchievementsAndStatsInterface();
+
+ virtual void CreatePanel( vgui::Panel* pParent );
+ virtual void DisplayPanel();
+ virtual void ReleasePanel();
+ virtual int GetAchievementsPanelMinWidth( void ) const { return cAchievementsDialogMinWidth; }
+
+protected:
+ vgui::DHANDLE<vgui::Frame> m_pAchievementAndStatsSummary;
+};
+
+#endif
+
+#endif // CSACHIEVEMENTSANDSTATSINTERFACE_H
|