Files
ichni_Creator_Studio/Assets/Suggo Creations/RETROWAVE SKIES Lite/Readme Assets/Scripts/ReadmeLite.cs
SoulliesOfficial 55b7d30a04 天空盒和地板
2025-12-20 03:11:46 -05:00

17 lines
314 B
C#

using System;
using UnityEngine;
public class ReadmeLite : ScriptableObject
{
public Texture2D icon;
public string title;
public SectionLite[] sections;
public bool loadedLayout;
[Serializable]
public class SectionLite
{
public string heading, text, linkText, url;
}
}