示例#1
0
    public CPlatform()
    {
#if UNITY_STANDALONE
        m_cPlatform = new PlatformForIOS();
#endif
#if UNITY_IPHONE && IOS
        platform = new PlatformForIOS();
#endif
#if UNITY_IPHONE && IOSPP
        platform = new PlatformPPIOS();
#endif
#if UNITY_ANDROID
        platform = new PlatformForIOS();
#endif
    }
示例#2
0
    public CPlatform()
    {
#if UNITY_ANDROID
        platform = new PlatformForIOS();
#endif
    }