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
+20
View File
@@ -0,0 +1,20 @@
using System;
namespace Hjg.Pngcs.Chunks
{
// Token: 0x0200000E RID: 14
public abstract class PngChunkMultiple : PngChunk
{
// Token: 0x0600005B RID: 91 RVA: 0x0000305D File Offset: 0x0000125D
internal PngChunkMultiple(string id, ImageInfo imgInfo)
: base(id, imgInfo)
{
}
// Token: 0x0600005C RID: 92 RVA: 0x00003067 File Offset: 0x00001267
public sealed override bool AllowsMultiple()
{
return true;
}
}
}