This website works better with JavaScript
Home
Explore
Help
Sign In
GHzGlass
/
TestURP
Watch
4
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
d13c86330d
Branches
Tags
master
TestURP
/
Assets
/
TutorialInfo
/
Scripts
胡佳骏
ae40c72ecc
1
1 year ago
..
Editor
ae40c72ecc
1
1 year ago
Editor.meta
ae40c72ecc
1
1 year ago
Readme.cs
ae40c72ecc
1
1 year ago
Readme.cs.meta
ae40c72ecc
1
1 year ago
Readme.cs
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;
}
}