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 Gif.Components
{
// Token: 0x02000004 RID: 4
public struct Rectangle
{
// Token: 0x0400001F RID: 31
public int xmin;
// Token: 0x04000020 RID: 32
public int ymin;
// Token: 0x04000021 RID: 33
public int xmax;
// Token: 0x04000022 RID: 34
public int ymax;
}
}