#include "platform.hpp" #include void* Platform::m_pointer; void Platform::WarpMouse(double x, double y) { glfwSetCursorPos(static_cast(Platform::GetUserData()), x, y); } float Platform::GetTime() { return static_cast(glfwGetTime()); }