Exemplo n.º 1
0
    static Zapic()
    {
#if UNITY_EDITOR
        _interface = new ZapicEditorInterface();
#elif UNITY_IOS
        _interface = new ZapiciOSInterface();
#elif UNITY_ANDROID
        throw new NotImplementedException("Android is not currently supported");
#endif
    }
Exemplo n.º 2
0
    static Zapic()
    {
#if UNITY_EDITOR
        _interface = new ZapicEditorInterface();
#elif UNITY_IOS
        _interface = new ZapiciOSInterface();
#elif UNITY_ANDROID
        _interface = new ZapicAndroidInterface();
#endif
    }
Exemplo n.º 3
0
 public ZapicPlayerAuthenticationHandler(IZapicInterface zapicInterface) : base("com.zapic.sdk.android.ZapicPlayerAuthenticationHandler")
 {
     _zapicInterface = zapicInterface;
 }