36 lines
832 B
C#
36 lines
832 B
C#
using System;
|
|
|
|
namespace Hjg.Pngcs.Chunks
|
|
{
|
|
// Token: 0x02000007 RID: 7
|
|
public class ChunkCopyBehaviour
|
|
{
|
|
// Token: 0x0400002B RID: 43
|
|
public static readonly int COPY_NONE = 0;
|
|
|
|
// Token: 0x0400002C RID: 44
|
|
public static readonly int COPY_PALETTE = 1;
|
|
|
|
// Token: 0x0400002D RID: 45
|
|
public static readonly int COPY_ALL_SAFE = 4;
|
|
|
|
// Token: 0x0400002E RID: 46
|
|
public static readonly int COPY_ALL = 8;
|
|
|
|
// Token: 0x0400002F RID: 47
|
|
public static readonly int COPY_PHYS = 16;
|
|
|
|
// Token: 0x04000030 RID: 48
|
|
public static readonly int COPY_TEXTUAL = 32;
|
|
|
|
// Token: 0x04000031 RID: 49
|
|
public static readonly int COPY_TRANSPARENCY = 64;
|
|
|
|
// Token: 0x04000032 RID: 50
|
|
public static readonly int COPY_UNKNOWN = 128;
|
|
|
|
// Token: 0x04000033 RID: 51
|
|
public static readonly int COPY_ALMOSTALL = 256;
|
|
}
|
|
}
|