#include "Gedeng/Time.h" #include namespace Gedeng { unsigned long Time::get_time_ms() { auto now = std::chrono::high_resolution_clock::now(); auto now_ms = std::chrono::time_point_cast(now); return now_ms.time_since_epoch().count(); } }