mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
10 lines
148 B
C
10 lines
148 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
// [RH] Returns millisecond-accurate time
|
||
|
uint64_t I_msTime();
|
||
|
|
||
|
// Nanosecond-accurate time
|
||
|
uint64_t I_nsTime();
|