summaryrefslogtreecommitdiff
path: root/Other/CADEMO/Assets/TutorialInfo/Scripts/Readme.cs
blob: 48843dbfd7d27e9a51e5244733d010368fc5ad19 (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;
	}
}