scene update

This commit is contained in:
kivss
2025-11-23 23:19:11 +08:00
parent 0804b43255
commit 6639fbb164
86 changed files with 48451 additions and 33 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;
}
}