mirror of
https://github.com/unknownworlds/NS.git
synced 2024-12-03 17:51:55 +00:00
19 lines
188 B
C
19 lines
188 B
C
|
|
||
|
#ifndef VGUI_REPAINTSIGNAL_H
|
||
|
#define VGUI_REPAINTSIGNAL_H
|
||
|
|
||
|
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
class RepaintSignal
|
||
|
{
|
||
|
public:
|
||
|
virtual void panelRepainted(Panel* panel)=0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|