gimm-unity-templates/template-2022.3.5f1-URP/Assets/TutorialInfo/Scripts/Readme.cs
2023-10-10 19:40:16 -06:00

16 lines
302 B
C#

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