summaryrefslogtreecommitdiff
path: root/Assets/TutorialInfo/Scripts/Readme.cs
blob: f17c0cb20f432fbf25a77edb71fda875d02d4d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
	}
}