mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 22:27:05 +00:00
20 lines
431 B
C
20 lines
431 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef VGUI_DRAWTREEPANEL_H
|
||
|
#define VGUI_DRAWTREEPANEL_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
void VGui_CreateDrawTreePanel( vgui::Panel *parent );
|
||
|
void VGui_MoveDrawTreePanelToFront();
|
||
|
void VGui_UpdateDrawTreePanel();
|
||
|
|
||
|
|
||
|
#endif // VGUI_DRAWTREEPANEL_H
|