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
+21
View File
@@ -0,0 +1,21 @@
using System;
namespace Gif.Components
{
// Token: 0x02000005 RID: 5
public struct Size
{
// Token: 0x06000021 RID: 33 RVA: 0x00002C9A File Offset: 0x0000109A
public Size(int width, int height)
{
this.width = width;
this.height = height;
}
// Token: 0x04000023 RID: 35
public int width;
// Token: 0x04000024 RID: 36
public int height;
}
}