This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
namespace Hjg.Pngcs.Chunks
{
// Token: 0x0200000B RID: 11
internal class ChunkPredicateEquiv : ChunkPredicate
{
// Token: 0x0600003E RID: 62 RVA: 0x00002B73 File Offset: 0x00000D73
public ChunkPredicateEquiv(PngChunk chunk)
{
this.chunk = chunk;
}
// Token: 0x0600003F RID: 63 RVA: 0x00002B82 File Offset: 0x00000D82
public bool Matches(PngChunk c)
{
return ChunkHelper.Equivalent(c, this.chunk);
}
// Token: 0x04000037 RID: 55
private readonly PngChunk chunk;
}
}