胡佳骏 ae40c72ecc 1 1 year ago
..
Editor ae40c72ecc 1 1 year ago
Editor.meta ae40c72ecc 1 1 year ago
Readme.cs ae40c72ecc 1 1 year ago
Readme.cs.meta ae40c72ecc 1 1 year ago

Readme.cs

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