blob: 5e8a34b657aeae1c0e11835774623064ac42bb9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef TF_HUD_MANN_VS_MACHINE_STATS_H
#define TF_HUD_MANN_VS_MACHINE_STATS_H
#ifdef _WIN32
#pragma once
#endif
#include "hudelement.h"
#include "tf_controls.h"
#include "hud.h"
#include <vgui/IScheme.h>
#include <vgui_controls/EditablePanel.h>
//=========================================================
class CCreditDisplayPanel : public vgui::EditablePanel
{
DECLARE_CLASS_SIMPLE( CCreditDisplayPanel, vgui::EditablePanel );
public:
CCreditDisplayPanel( Panel *parent, const char *pName );
virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
};
//=========================================================
class CCreditSpendPanel : public vgui::EditablePanel
{
DECLARE_CLASS_SIMPLE( CCreditSpendPanel, vgui::EditablePanel );
public:
CCreditSpendPanel( Panel *parent, const char *pName );
virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
};
#endif // TF_HUD_MANN_VS_MACHINE_STATS_H
|