mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
25 lines
391 B
C
25 lines
391 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#ifndef VGUI_REPAINTSIGNAL_H
|
|||
|
#define VGUI_REPAINTSIGNAL_H
|
|||
|
|
|||
|
|
|||
|
|
|||
|
namespace vgui
|
|||
|
{
|
|||
|
|
|||
|
class RepaintSignal
|
|||
|
{
|
|||
|
public:
|
|||
|
virtual void panelRepainted(Panel* panel)=0;
|
|||
|
};
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endif
|