This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
sota/BukitTimahGame/Assets/TutorialInfo/Scripts/Readme.cs

17 lines
302 B
C#
Raw Normal View History

2024-07-12 07:37:09 +00:00
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;
}
}