Test Szenen + erstes Movement Teil 3

This commit is contained in:
2026-05-05 21:03:07 +02:00
parent bf192ab9fa
commit b90873fb98
449 changed files with 11149 additions and 0 deletions
+14
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;
}
}