lvjincheng cd1a8a1ac0 first update 3 years ago
..
Editor cd1a8a1ac0 first update 3 years ago
Editor.meta cd1a8a1ac0 first update 3 years ago
Readme.cs cd1a8a1ac0 first update 3 years ago
Readme.cs.meta cd1a8a1ac0 first update 3 years ago

Readme.cs

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;
}
}