mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-23 18:45:36 +00:00
11 lines
189 B
C++
11 lines
189 B
C++
#pragma once
|
|
|
|
#include "common/types.h"
|
|
|
|
namespace Emulator::emuTimer {
|
|
void start();
|
|
double getTimeMsec();
|
|
u64 getTimeCounter();
|
|
u64 getTimeFrequency();
|
|
} // namespace Emulator::emuTimer
|