This commit is contained in:
SoulliesOfficial
2025-11-22 21:36:59 -05:00
parent 0804b43255
commit f09278037e
347 changed files with 158033 additions and 225589 deletions

View File

@@ -0,0 +1,16 @@
using System;
using UnityEngine;
public class ReadmeLite : ScriptableObject
{
public Texture2D icon;
public string title;
public SectionLite[] sections;
public bool loadedLayout;
[Serializable]
public class SectionLite
{
public string heading, text, linkText, url;
}
}