Files
axyz/include/Engine/Core/EMouseMove.h
T
sippeangelo 5f9dce4303 Added Input
2015-11-24 10:37:50 +01:00

21 lines
324 B
C++

#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