Initial Commit

This commit is contained in:
2026-04-01 15:46:15 +01:00
commit 72ae178fd1
12270 changed files with 3639153 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;
}
}