scripts
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
|
||||
namespace Hjg.Pngcs.Chunks
|
||||
{
|
||||
// Token: 0x02000009 RID: 9
|
||||
internal class ChunkPredicateId : ChunkPredicate
|
||||
{
|
||||
// Token: 0x0600003A RID: 58 RVA: 0x00002AD2 File Offset: 0x00000CD2
|
||||
public ChunkPredicateId(string id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
// Token: 0x0600003B RID: 59 RVA: 0x00002AE1 File Offset: 0x00000CE1
|
||||
public bool Matches(PngChunk c)
|
||||
{
|
||||
return c.Id.Equals(this.id);
|
||||
}
|
||||
|
||||
// Token: 0x04000034 RID: 52
|
||||
private readonly string id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user