Added Input

This commit is contained in:
sippeangelo
2015-11-24 10:37:50 +01:00
parent 0a1f0d96db
commit 5f9dce4303
22 changed files with 937 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef Events_MouseMove_h__
#define Events_MouseMove_h__
#include "Core/EventBroker.h"
namespace Events
{
/** Thrown on mouse movement */
struct MouseMove : Event
{
/** The new position of the cursor in window coordinates. */
double X, Y;
/** The delta movement of the mouse. */
double DeltaX, DeltaY;
};
}
#endif