light/modules/engine/src/time/timer.cpp

9 lines
137 B
C++

#include <engine/time/timer.hpp>
namespace Light {
Timer::Timer(): m_start(std::chrono::steady_clock::now())
{
}
} // namespace Light