mirror of
https://github.com/ENSL/NS.git
synced 2024-12-02 09:11:56 +00:00
22 lines
285 B
C
22 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
|