Newer
Older
Dreamsturbia-Project-IADE-Unity3D / Assets / Scripts / Colectible Inventory / Item.cs
@Rackday Rackday on 21 Aug 2024 305 bytes Project Added
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. [CreateAssetMenu(menuName = "Inventory/NewItem")]
  6. public class Item : ScriptableObject
  7. {
  8. public string itemName;
  9. public string description;
  10. public Sprite image;
  11. public int slotId;
  12. }