2026-07-08 유나 프로토타입버전 추가

This commit is contained in:
2026-07-08 16:57:32 +09:00
parent 511fb9cccb
commit 74b6342070
232 changed files with 17162 additions and 2 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;
}
}