This website works better with JavaScript
Home
Explore
Help
Register
Sign In
cock
/
cockClient2
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
d41d04445c
Branches
Tags
master
cockClient2
/
Assets
/
TutorialInfo
/
Scripts
zhengchen
d47bebce5c
1
1 year ago
..
Editor
d47bebce5c
1
1 year ago
Editor.meta
d47bebce5c
1
1 year ago
Readme.cs
d47bebce5c
1
1 year ago
Readme.cs.meta
d47bebce5c
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;
}
}