Added KeyboardChar event for keyboard text input

This commit is contained in:
2015-12-12 18:07:53 +01:00
parent 6723e71fee
commit 653b4689b5
3 changed files with 37 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Events_KeyboardChar_h__
#define Events_KeyboardChar_h__
#include "EventBroker.h"
namespace Events
{
struct KeyboardChar : Event
{
double Timestamp = 0.f;
unsigned int Char = 0;
};
}
#endif