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

10 lines
137 B
C++
Raw Normal View History

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