diff options
Diffstat (limited to 'core/compatibility.cpp')
-rw-r--r-- | core/compatibility.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/compatibility.cpp b/core/compatibility.cpp new file mode 100644 index 0000000..35681b1 --- /dev/null +++ b/core/compatibility.cpp @@ -0,0 +1,10 @@ + +#ifdef _WIN32 +#include <windows.h> + +void sleep(int i) +{ + Sleep(i*1000); +} + +#endif |