Files
axyz/include/Engine/GUI/EButtonRelease.h
T
2015-11-30 17:02:24 +01:00

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