Files
TSE/TSE_GlfwImpl/src/TimeInterfaceGlfw.cpp
2026-01-17 17:08:22 +01:00

8 lines
154 B
C++

#include "TimeInterfaceGlfw.hpp"
#include "GLFW/glfw3.h"
float TSE::GLFW::TimeInterfaceGlfw::GetTotalEllapsedTime()
{
return (float)glfwGetTime();
}