ns/dev/hitboxtest/source/external/vgui/include/VGUI_ButtonController.h
2005-04-12 13:43:58 +00:00

21 lines
285 B
C++

#ifndef VGUI_BUTTONCONTROLLER_H
#define VGUI_BUTTONCONTROLLER_H
#include<VGUI.h>
namespace vgui
{
class Button;
class VGUIAPI ButtonController
{
public:
virtual void addSignals(Button* button)=0;
virtual void removeSignals(Button* button)=0;
};
}
#endif