This commit is contained in:
Dominik G.
2025-10-03 20:26:54 +02:00
parent 57d68f6595
commit c2173eb9b7
1018 changed files with 706311 additions and 0 deletions

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;
}
}