Projekt erstellt

This commit is contained in:
2026-06-11 12:15:38 +02:00
parent 916c80b6dd
commit 9cf885273a
61 changed files with 7418 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;
}
}