您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
751 B
751 B
using System;
using UnityEngine;
namespace Unity.Multiplayer.Samples.BossRoom.Editor
{
/// <remarks>
/// Custom readme class based on the readme created for URP. For more context, see:
/// https://github.com/Unity-Technologies/Graphics/tree/master/com.unity.template-universal
/// </remarks>
[CreateAssetMenu]
public class Readme : ScriptableObject
{
public Texture2D icon;
public string title;
public Section[] sections;
public bool loadedLayout;
[Serializable]
public class Section
{
public string heading;
public string text;
public string linkText;
public string url;
}
}
}