using System.Collections.Generic; using UnityEngine; /// /// Class holding all (static) data about a certain theme /// [CreateAssetMenu(menuName = "Create new Scriptable/Theme")] public class Theme : ScriptableObject { /// /// A theme title /// public string title; /// /// A short description of the theme /// public string description; /// /// Index of the theme /// public ThemeIndex themeIndex; /// /// The index of the model you want to use /// public ModelIndex modelIndex; /// /// List of all learnable words/letters /// public List learnables = new List(); }