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