#include"Globals.h"// NOTE: MSVC stupidness requires this to be the same across all modules#ifndef _WIN32#include <unistd.h>#endifvoidcSleep::MilliSleep(unsigned int a_MilliSeconds ){#ifdef _WIN32Sleep(a_MilliSeconds);// Don't tick too much#elseusleep(a_MilliSeconds*1000);#endif}