shadPS4/src/emuTimer.cpp
2023-10-30 08:48:52 +02:00

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(); }
}