Skip to content
Snippets Groups Projects
DefaultScroll.cs 305 B
Newer Older
  • Learn to ignore specific revisions
  • BenniHome's avatar
    BenniHome committed
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
        [CreateAssetMenu(fileName = "new DefaultScroll", menuName = "Inventory System/Items/DefaultScroll")]
    public class DefaultScroll : ItemObject
    {
        public void Awake()
        {
           type = ItemType.DefaultScroll;
        }
    }