ReadmeBE3.cs 275 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 using System; using UnityEngine; public class ReadmeBE3 : ScriptableObject { public Texture2D icon; public string title; public Section[] sections; public bool loadedLayout; [Serializable] public class Section { public string heading, text, linkText, url; } }