diff options
Diffstat (limited to 'game/client/tf2/overlay_orders.cpp')
| -rw-r--r-- | game/client/tf2/overlay_orders.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/game/client/tf2/overlay_orders.cpp b/game/client/tf2/overlay_orders.cpp new file mode 100644 index 0000000..ff8f830 --- /dev/null +++ b/game/client/tf2/overlay_orders.cpp @@ -0,0 +1,25 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $NoKeywords: $ +//=============================================================================// +#include "cbase.h" +#include "vgui_entityimagepanel.h" +#include "CommanderOverlay.h" + + + +class COrderStatusPanel : public CEntityImagePanel +{ + DECLARE_CLASS( COrderStatusPanel, CEntityImagePanel ); +public: + COrderStatusPanel( vgui::Panel *parent, const char *panelName ) + : BaseClass( parent, "COrderStatusPanel" ) + { + } +}; + + +DECLARE_OVERLAY_FACTORY( COrderStatusPanel, "personal_order" ); |