Files
axyz/include/Engine/Core/EMouseMove.h
T
2015-11-30 17:02:24 +01:00

21 lines
319 B
C++

#ifndef Events_MouseMove_h__
#define Events_MouseMove_h__
#include "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