lstmdg cfdbf69074 2023.7.28 1 年之前
..
Editor cfdbf69074 2023.7.28 1 年之前
Editor.meta cfdbf69074 2023.7.28 1 年之前
Readme.cs cfdbf69074 2023.7.28 1 年之前
Readme.cs.meta cfdbf69074 2023.7.28 1 年之前
Samples.GameplaySequence.asmdef cfdbf69074 2023.7.28 1 年之前
Samples.GameplaySequence.asmdef.meta cfdbf69074 2023.7.28 1 年之前

Readme.cs

using System;
using UnityEngine;

namespace Samples.GameplaySequence
{
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;
}
}
}