19 lines
200 B
C++
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
|