@ase2015

В чем ошибка в коде?

вот такая ошибка,что делать:
Assets\Scripts\game.cs(20,52): error CS0103: The name 'PurchaseManager_OnPurchaseNonConsumable' does not exist in the current context

вот код:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Purchasing;


public class game : MonoBehaviour
{
       
    private void G()
    {
        PurchaseManager.OnPurchaseNonConsumable += PurchaseManager_OnPurchaseNonConsumable;
    }
  • Вопрос задан
  • 91 просмотр
Решения вопроса 1
hePPer
@hePPer
в класс game добавить метод PurchaseManager_OnPurchaseNonConsumable
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы