增加Demo示例

增加Demo示例
This commit is contained in:
ALEXTANG
2022-09-23 10:38:22 +08:00
parent 752cf4bad6
commit a23f74c2f9
38 changed files with 2892 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}