Reorganizing Project Folder Structure
This commit is contained in:
parent
d06a5e3d75
commit
048e618f1e
94 changed files with 701 additions and 7 deletions
20
Assets/_Project/TutorialInfo/Readme.cs
Normal file
20
Assets/_Project/TutorialInfo/Readme.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UIElements;
|
||||
|
||||
public class Readme : ScriptableObject
|
||||
{
|
||||
public StyleSheet commonStyle;
|
||||
public StyleSheet darkStyle;
|
||||
public StyleSheet lightStyle;
|
||||
public Texture2D icon;
|
||||
public string title;
|
||||
public Section[] sections;
|
||||
public bool loadedLayout;
|
||||
|
||||
[Serializable]
|
||||
public class Section
|
||||
{
|
||||
public string heading, text, linkText, url;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue