This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
gusna453
/
Gamen3
mirror of
https://gitlab.com/Nat257/gamen3.git
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Tree:
569636a93d
Branches
Tags
main
Gamen3
/
Assets
/
TutorialInfo
/
Scripts
Nathan Gusatto
569636a93d
Initial Commit
2 tháng trước cách đây
..
Editor
569636a93d
Initial Commit
2 tháng trước cách đây
Editor.meta
569636a93d
Initial Commit
2 tháng trước cách đây
Readme.cs
569636a93d
Initial Commit
2 tháng trước cách đây
Readme.cs.meta
569636a93d
Initial Commit
2 tháng trước cách đây
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;
}
}