jetzt aber

This commit is contained in:
2026-04-19 14:02:18 +02:00
parent a7c200a5fb
commit a3710d53b8
39 changed files with 6526 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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;
}
}