aboutsummaryrefslogtreecommitdiff
path: root/Assets/TutorialInfo/Scripts/Readme.cs
diff options
context:
space:
mode:
authorSmallFox <2806143047@qq.com>2026-05-08 20:23:16 +0800
committerSmallFox <2806143047@qq.com>2026-05-08 20:23:16 +0800
commit698ab757d6770a29f10ddffeec68601464957305 (patch)
tree7133d572153e2728f17c955bec967236659dc05f /Assets/TutorialInfo/Scripts/Readme.cs
parent2ce289b27ddbba64febfe5a93beb8c453f2396f5 (diff)
Removed some unity shit
Removed some unity shit
Diffstat (limited to 'Assets/TutorialInfo/Scripts/Readme.cs')
-rw-r--r--Assets/TutorialInfo/Scripts/Readme.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Assets/TutorialInfo/Scripts/Readme.cs b/Assets/TutorialInfo/Scripts/Readme.cs
deleted file mode 100644
index 95f6269..0000000
--- a/Assets/TutorialInfo/Scripts/Readme.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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;
- }
-}