2025-01-04 18:41:26 +08:00
|
|
|
|
using System;
|
2024-12-14 18:27:59 +08:00
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|