Files
VRProject/Assets/TutorialInfo/Scripts/Readme.cs
oogushiyuuga d42ac5beeb Mapの追加
2026-05-18 16:13:38 +09:00

15 lines
272 B
C#
Executable File

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;
}
}