summaryrefslogtreecommitdiff
path: root/Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs')
-rw-r--r--Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs14
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;
+ }
+}