internal ArtifactInfoDifference(string key, DiffType diffType, ArtifactInfo oldArtifactInfo, ArtifactInfo newArtifactInfo) { this.key = key; this.diffType = diffType; this.oldArtifactInfo = oldArtifactInfo; this.newArtifactInfo = newArtifactInfo; this.message = ""; }
private static extern string GetArtifactID_Internal(ArtifactInfo self);
private static string GetAssetName(ArtifactInfo artifactInfo) { var assetName = artifactInfo.dependencies[kImportParameter_NameOfAsset].value.ToString(); return(assetName); }