#pragma once // Unix - Win32 compatibility stuff #ifdef WIN32 #include #include #else // *nix typedef unsigned long DWORD, *PDWORD, *LPDWORD; #include #include #endif // WIN32 #ifndef WIN32 char _getch(void); #endif // !WIN32