初期コミット

This commit is contained in:
oogushiyuuga
2026-02-17 14:51:52 +09:00
parent a56c092573
commit 690c2e98d0
3651 changed files with 1024547 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}