2023-09-06 00:27:38 +00:00
|
|
|
//========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
|
2023-09-06 00:25:25 +00:00
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
//
|
|
|
|
// $NoKeywords: $
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
#ifndef VGUI_INTCHANGESIGNAL_H
|
|
|
|
#define VGUI_INTCHANGESIGNAL_H
|
|
|
|
|
|
|
|
#include<VGUI.h>
|
|
|
|
|
|
|
|
namespace vgui
|
|
|
|
{
|
|
|
|
|
|
|
|
class Panel;
|
|
|
|
|
|
|
|
class VGUIAPI IntChangeSignal
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void intChanged(int value,Panel* panel)=0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-06-05 00:00:00 +00:00
|
|
|
#endif
|