12 lines
250 B
C#
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();
|
|
}
|
|
}
|