Premier commit

This commit is contained in:
mrtoine 2025-10-10 18:53:01 +02:00
commit a492d86558
158 changed files with 14898 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;
}
}