a20ef0504a
This reverts commit62653cf65d, reversing changes made tob81bb9eeea.
20 lines
281 B
C++
20 lines
281 B
C++
#ifndef Events_ButtonRelease_h__
|
|
#define Events_ButtonRelease_h__
|
|
|
|
#include "../Core/EventBroker.h"
|
|
|
|
namespace GUI { class Button; }
|
|
|
|
namespace Events
|
|
{
|
|
|
|
/** Thrown on GUI button release. */
|
|
struct ButtonRelease : Event
|
|
{
|
|
std::string FrameName;
|
|
GUI::Button* Button;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |