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 UnityEngine
{
// Token: 0x020001D9 RID: 473
public enum FFTWindow
{
// Token: 0x0400050D RID: 1293
Rectangular,
// Token: 0x0400050E RID: 1294
Triangle,
// Token: 0x0400050F RID: 1295
Hamming,
// Token: 0x04000510 RID: 1296
Hanning,
// Token: 0x04000511 RID: 1297
Blackman,
// Token: 0x04000512 RID: 1298
BlackmanHarris
}
}