2024-10-13 21:59:03 -07:00

14 lines
377 B
C#

using AssetRipper.SourceGenerated.Classes.ClassID_115;
namespace AssetRipper.SourceGenerated.Extensions;
public static class MonoScriptExtensions
{
public static bool IsFullNameEqual(this IMonoScript _this, IMonoScript other)
{
return _this.AssemblyName == other.AssemblyName
&& _this.Namespace == other.Namespace
&& _this.ClassName_R == other.ClassName_R;
}
}