mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 19:00:27 +01:00
16 lines
273 B
C++
16 lines
273 B
C++
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
||
|
|
||
|
/* rcg10072001 Moved stuff into this file. */
|
||
|
|
||
|
#include <Engine/Engine.h>
|
||
|
#include <Engine/Base/Timer.h>
|
||
|
|
||
|
void CTimer::Sleep(DWORD milliseconds)
|
||
|
{
|
||
|
::Sleep(milliseconds);
|
||
|
}
|
||
|
|
||
|
// end of Win32Timer.cpp ...
|
||
|
|
||
|
|