8#ifndef GALAXY_EVENTS_MOUSEMOVED_HPP_
9#define GALAXY_EVENTS_MOUSEMOVED_HPP_
28 MouseMoved(
const float xpos,
const float ypos,
const float xrel,
const float yrel)
noexcept;
Contains data relating to a mouse moved event.
float m_yrel
The relative motion in the Y direction.
float m_ypos
Y coordinate, relative to window.
float m_xpos
X coordinate, relative to window.
float m_xrel
The relative motion in the X direction.
MouseMoved(const float xpos, const float ypos, const float xrel, const float yrel) noexcept
Constructor.