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