mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-05 02:45:35 +00:00
10 lines
229 B
Text
10 lines
229 B
Text
|
module frames;
|
||
|
|
||
|
float time; // Time since last frame
|
||
|
float totalTime; // Time since rendering started
|
||
|
|
||
|
ulong counter; // Number of frames since program startup
|
||
|
|
||
|
// Sleep a given number of frames
|
||
|
idle fsleep(int frameNum);
|