mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-03-26 04:28:32 -06: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(); }
|
|
|
|
} |