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

17 lines
218 B
C++

#ifndef Events_ButtonLeave_h__
#define Events_ButtonLeave_h__
#include "../Core/EventBroker.h"
namespace Events
{
/** Thrown on GUI button hover. */
struct ButtonLeave : Event
{
std::string FrameName;
};
}
#endif