架构大更

This commit is contained in:
SoulliesOfficial
2026-03-20 11:56:50 -04:00
parent e60ef64d01
commit d09b58fd80
3663 changed files with 15232012 additions and 105579 deletions

View File

@@ -1,21 +1,20 @@
using System.Collections;
using System.Collections.Generic;
#if MM_UI
using UnityEngine;
#if MM_UI
using UnityEngine.UI;
namespace MoreMountains.Tools
{
/// <summary>
/// A class used to bind a title item to a MMDebugMenu
/// A class used to bind a title item to a MMDebugMenu
/// </summary>
public class MMDebugMenuItemTitle : MonoBehaviour
{
[Header("Bindings")]
/// the text comp used to display the title
public Text TitleText;
/// a line below the title
public Image TitleLine;
}
{
[Header("Bindings")]
/// the text comp used to display the title
public Text TitleText;
/// a line below the title
public Image TitleLine;
}
}
#endif