mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
40 lines
455 B
C++
40 lines
455 B
C++
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
#include "interface.h"
|
||
|
|
||
|
bool InitializeVGui(CreateInterfaceFn *factorylist, int factorycount)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int StartVGUI()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void StopVGUI()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void RunVGUIFrame()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool VGUIIsRunning()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool VGUIIsStopping()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool VGUIIsInConfig()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void VGUIFinishedConfig()
|
||
|
{
|
||
|
}
|
||
|
|