26 #include "PlatformDefinitions.h" 28 #if defined( PLATFORM_WIN32 ) 29 #include "Win32Debug.h" 30 typedef WindowsDebug PlatformDebug;
32 #elif defined( PLATFORM_UNIVERSAL_WINDOWS ) 34 typedef WindowsStoreDebug PlatformDebug;
36 #elif defined ( PLATFORM_ANDROID ) 37 #include "AndroidDebug.h" 38 typedef AndroidDebug PlatformDebug;
40 #elif defined ( PLATFORM_LINUX ) 41 #include "LinuxDebug.h" 42 typedef LinuxDebug PlatformDebug;
45 #error Unsupported platform