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/RunningLateGame/Assets/TutorialInfo/Scripts/Readme.cs
Sc0rch-thinks 1df2624133 game: adding unity packages (2)
added ai navigaion, input system, postprocessing and adding the starter asset charactor controler
2024-07-28 13:34:47 +08:00

15 lines
272 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;
}
}