﻿using UnityEngine;
using System.Collections;

public class Inventory : MonoBehaviour
{
    public int qtd;

    void Update()
    {
        PlayerPrefs.SetInt("Qtd", qtd);
    }
    
}
