657125b469
Button events are now sent when you click.
15 lines
215 B
C++
15 lines
215 B
C++
#ifndef Events_ButtonClicked_h__
|
|
#define Events_ButtonClicked_h__
|
|
|
|
#include "Core/Event.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct ButtonClicked : public Event {
|
|
std::string EntityName = "DEFAULT STRING USED";
|
|
};
|
|
|
|
}
|
|
|
|
#endif |