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;
using System.Runtime.InteropServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
// Token: 0x02000016 RID: 22
[RequiredByNativeCode]
[StructLayout(LayoutKind.Sequential)]
public sealed class WaitForSeconds : YieldInstruction
{
// Token: 0x060001EE RID: 494 RVA: 0x00005134 File Offset: 0x00003334
public WaitForSeconds(float seconds)
{
this.m_Seconds = seconds;
}
// Token: 0x04000029 RID: 41
internal float m_Seconds;
}
}