diff options
author | chai <chaifix@163.com> | 2022-08-29 09:39:43 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-08-29 09:39:43 +0800 |
commit | 3fafce57f902a8d8d20f7e9f1bcb0e55c9cb74f3 (patch) | |
tree | e5394053956da50f9c0bb37b4773e8ce7cdd92c9 /Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs |
Diffstat (limited to 'Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs')
-rw-r--r-- | Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs b/Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs new file mode 100644 index 0000000..48843db --- /dev/null +++ b/Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs @@ -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; + } +} |