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

19 lines
205 B
C++

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