2024-05-10 19:02:57 +02:00

16 lines
307 B
C#

using System;
using UnityEngine;
public class Readme : ScriptableObject {
public Texture2D icon;
public float iconMaxWidth = 128f;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section {
public string heading, text, linkText, url;
}
}