mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
10 lines
169 B
C++
10 lines
169 B
C++
#include "Lib/Timer.h"
|
|
|
|
namespace Emulator::emuTimer {
|
|
static Lib::Timer timer;
|
|
|
|
void start() { timer.Start(); }
|
|
|
|
double getTimeMsec() { return timer.GetTimeMsec(); }
|
|
|
|
} |