mirror of
https://github.com/ENSL/NS.git
synced 2025-01-23 01:30:59 +00:00
4f13237895
Change CRLF to LF in repo.
26 lines
No EOL
381 B
C++
26 lines
No EOL
381 B
C++
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef VGUI_REPAINTSIGNAL_H
|
|
#define VGUI_REPAINTSIGNAL_H
|
|
|
|
|
|
|
|
namespace vgui
|
|
{
|
|
class Panel;
|
|
|
|
class RepaintSignal
|
|
{
|
|
public:
|
|
virtual void panelRepainted(Panel* panel)=0;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif |