ProjectDDD/Assets/TutorialInfo/Scripts/Readme.cs
NTG_Lenovo 5b83af003b commit
2025-05-07 18:29:09 +09:00

17 lines
302 B (Stored with Git LFS)
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;
}
}