Files
MinFt/Client/LocalPackages/SoftMaskForUGUI-3.5.0/Editor/Internal/AssetModification/IComponentModifier.cs
2026-04-27 12:07:32 +08:00

12 lines
250 B
C#

using UnityEngine;
namespace Coffee.UISoftMaskInternal.AssetModification
{
internal interface IComponentModifier
{
bool isModified { get; }
bool ModifyComponent(GameObject root, bool dryRun);
string Report();
}
}