Add project files.

This commit is contained in:
caleb Sandford DeQuincey
2025-10-27 17:05:16 +00:00
parent 93cec4de9e
commit 36f31d54d1
7970 changed files with 2179811 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;
}
}