Files
axyz/include/Engine/Core/EKeyDown.h
T
sippeangelo 5f9dce4303 Added Input
2015-11-24 10:37:50 +01:00

19 lines
209 B
C++

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