Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
922 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef HINTITEMORDERBASE_H
#define HINTITEMORDERBASE_H
#ifdef _WIN32
#pragma once
#endif
#include "hintitembase.h"
#include "c_tf2rootpanel.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class CHintItemOrderBase : public CHintItemBase
{
DECLARE_CLASS( CHintItemOrderBase, CHintItemBase );
public:
CHintItemOrderBase( vgui::Panel *parent, const char *panelName );
virtual void DrawAxialLineToOrder( void );
virtual void SetHintTarget( vgui::Panel *panel );
protected:
bool m_bEffects;
EFFECT_HANDLE m_LineEffect;
EFFECT_HANDLE m_FlashEffect;
};
#endif // HINTITEMORDERBASE_H