blob: 5929b496787dac0d7352cd869192033372179624 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
// $NoKeywords: $
//=============================================================================//
#ifndef ILOADINGDISC_H
#define ILOADINGDISC_H
#ifdef _WIN32
#pragma once
#endif
#include <vgui/VGUI.h>
namespace vgui
{
class Panel;
}
abstract_class ILoadingDisc
{
public:
virtual void Create( vgui::VPANEL parent ) = 0;
virtual void Destroy( void ) = 0;
// loading disc
virtual void SetLoadingVisible( bool bVisible ) = 0;
// paused disc
virtual void SetPausedVisible( bool bVisible ) = 0;
};
extern ILoadingDisc *loadingdisc;
#endif // ILOADINGDISC_H
|