Newer
Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum ItemType{
LengthFact,
AngleFact,
DefaultScroll,
Default
}
public class ItemObject : ScriptableObject
{
//public GameObject prefab;
public ItemType type;
[TextArea(15,20)]
public string Description;
}