Move third party assets to ThirdParty folder

This commit is contained in:
2024-08-08 11:26:28 +02:00
parent 386f303057
commit bd91af6f98
10340 changed files with 100 additions and 175 deletions

View File

@@ -0,0 +1,50 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Readme.Section.cs" company="VRMADA">
// Copyright (c) VRMADA, All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
using System;
using UnityEngine;
namespace UltimateXR.Editor.Readme
{
public partial class UxrReadme
{
[Serializable]
public class Section
{
#region Inspector Properties/Serialized Fields
[SerializeField] private string _heading;
[SerializeField] private string _text;
[SerializeField] private string _linkText;
[SerializeField] private string _url;
#endregion
#region Public Types & Data
/// <summary>
/// Gets the heading.
/// </summary>
public string Heading => _heading;
/// <summary>
/// Gets the main text.
/// </summary>
public string Text => _text;
/// <summary>
/// Gets the link text.
/// </summary>
public string LinkText => _linkText;
/// <summary>
/// Gets the link URL.
/// </summary>
public string URL => _url;
#endregion
}
}
}