You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
898 B
35 lines
898 B
//====== Copyright © 1996-2005, 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/achievement_stats_summary.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
|