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

19 lines
204 B
C++

#ifndef Events_KeyDown_h__
#define Events_KeyDown_h__
#include "EventBroker.h"
namespace Events
{
/** Thrown on key press. */
struct KeyDown : Event
{
/** GLFW key code */
int KeyCode;
};
}
#endif