UnityEditor.AndroidPluginImporterExtension.PluginInfo.ConflictsWith C# (CSharp) Method

ConflictsWith() public method

public ConflictsWith ( AndroidPluginImporterExtension other ) : bool
other AndroidPluginImporterExtension
return bool
            public bool ConflictsWith(AndroidPluginImporterExtension.PluginInfo other)
            {
                return ((this.assetName == other.assetName) && (((this.cpuType == "AnyCPU") || (other.cpuType == "AnyCPU")) || (other.cpuType == this.cpuType)));
            }
        }
AndroidPluginImporterExtension.PluginInfo