9 lines
137 B
C++
9 lines
137 B
C++
#include <engine/time/timer.hpp>
|
|
|
|
namespace Light {
|
|
|
|
Timer::Timer(): m_start(std::chrono::steady_clock::now())
|
|
{
|
|
}
|
|
|
|
} // namespace Light
|