1
0

Initial commit

This commit is contained in:
LupiNexMedia
2026-06-04 03:42:31 +02:00
commit 01eb521da8
2245 changed files with 413543 additions and 0 deletions
@@ -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;
}
}