light/modules/time/src/timer.cpp

10 lines
124 B
C++
Raw Normal View History

#include <time/timer.hpp>
2025-07-05 13:28:41 +03:30
2025-07-11 00:05:48 +03:30
namespace lt {
2025-07-05 13:28:41 +03:30
Timer::Timer(): m_start(std::chrono::steady_clock::now())
2025-07-05 13:28:41 +03:30
{
}
2025-07-11 00:05:48 +03:30
} // namespace lt