minesweeper_game/Library/PackageCache/com.unity.collab-proxy@50ac96531b63/Editor/UI/GuiEnabled.cs
2025-03-15 14:30:26 -04:00

23 lines
393 B
C#

using System;
using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal class GuiEnabled : IDisposable
{
internal GuiEnabled(bool enabled)
{
mEnabled = GUI.enabled;
GUI.enabled = enabled && mEnabled;
}
void IDisposable.Dispose()
{
GUI.enabled = mEnabled;
}
bool mEnabled;
}
}