天空盒和地板

This commit is contained in:
SoulliesOfficial
2025-12-20 03:11:46 -05:00
parent 7a2bc844bd
commit 55b7d30a04
139 changed files with 294651 additions and 202742 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;
}
}