Readme.cs 272 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 Readme : ScriptableObject { public Texture2D icon; public string title; public Section[] sections; public bool loadedLayout; [Serializable] public class Section { public string heading, text, linkText, url; } }