Files
axyz/include/Engine/GUI/EButtonReleased.h
T

16 lines
220 B
C++

#ifndef Events_ButtonReleased_h__
#define Events_ButtonReleased_h__
#include "Core/Event.h"
namespace Events
{
struct ButtonReleased : public Event {
std::string EntityName;
EntityWrapper Entity;
};
}
#endif