/ Assets / TutorialInfo / Scripts / Readme.cs
Readme.cs
 1  using System;
 2  using UnityEngine;
 3  
 4  public class Readme : ScriptableObject
 5  {
 6      public Texture2D icon;
 7      public string title;
 8      public Section[] sections;
 9      public bool loadedLayout;
10  
11      [Serializable]
12      public class Section
13      {
14          public string heading, text, linkText, url;
15      }
16  }