22 lines
371 B
C#
22 lines
371 B
C#
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;
|
|
}
|
|
}
|