1
0
Files
Unity-Junior-Programmer-Pat…/Mod the Cube/Assets/TutorialInfo/Scripts/Readme.cs
T
LupiNexMedia 01eb521da8 Initial commit
2026-06-04 03:42:31 +02:00

17 lines
302 B
C#

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