fc5d054cb2
Fixed small things
16 lines
217 B
C++
16 lines
217 B
C++
#ifndef Events_ButtonPressed_h__
|
|
#define Events_ButtonPressed_h__
|
|
|
|
#include "Core/Event.h"
|
|
|
|
namespace Events
|
|
{
|
|
|
|
struct ButtonPressed : public Event {
|
|
std::string EntityName;
|
|
EntityWrapper Entity;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |