유니티 프로젝트 생

This commit is contained in:
Mingu Kim
2026-01-16 20:46:41 +09:00
parent 34d43b8dc8
commit f393ac0823
62 changed files with 7418 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;
}
}