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

19 lines
200 B
C++

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