galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
MouseMoved.cpp
Go to the documentation of this file.
1
7
8#include "MouseMoved.hpp"
9
10namespace galaxy
11{
12 MouseMoved::MouseMoved(const float xpos, const float ypos, const float xrel, const float yrel) noexcept
13 : m_xpos {xpos}
14 , m_ypos {ypos}
15 , m_xrel {xrel}
16 , m_yrel {yrel}
17 {
18 }
19} // namespace galaxy
Application.hpp galaxy.
MouseMoved(const float xpos, const float ypos, const float xrel, const float yrel) noexcept
Constructor.