using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Sirenix.OdinInspector; [System.Serializable] public class EncyclopediaArticle { public Dictionary content = new Dictionary(); public Dictionary images = new Dictionary(); public Dictionary integers = new Dictionary(); public Dictionary floats = new Dictionary(); public Dictionary booleans = new Dictionary(); public Dictionary> functions = new Dictionary>(); }