geode/loader/include/Geode/cocos/platform/CCStdC.h
HJfod 662a9e99f5 big cocos reworks
- remove cocos2dx folder
 - change all include paths in cocos2d to be relative
2022-10-17 15:46:36 +03:00

16 lines
431 B
C

#ifndef __CC_STD_C_GENERIC_H__
#define __CC_STD_C_GENERIC_H__
#include "CCPlatformConfig.h"
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
#include "win32/CCStdC.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
#include "ios/CCStdC.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "android/CCStdC.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
#include "mac/CCStdC.h"
#endif
#endif