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
+25
View File
@@ -0,0 +1,25 @@
using System;
namespace UnityEngine
{
// Token: 0x020001CC RID: 460
public enum AudioSpeakerMode
{
// Token: 0x040004E4 RID: 1252
Raw,
// Token: 0x040004E5 RID: 1253
Mono,
// Token: 0x040004E6 RID: 1254
Stereo,
// Token: 0x040004E7 RID: 1255
Quad,
// Token: 0x040004E8 RID: 1256
Surround,
// Token: 0x040004E9 RID: 1257
Mode5point1,
// Token: 0x040004EA RID: 1258
Mode7point1,
// Token: 0x040004EB RID: 1259
Prologic
}
}