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
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace UnityEngine
{
// Token: 0x0200006B RID: 107
public enum TouchPhase
{
// Token: 0x04000084 RID: 132
Began,
// Token: 0x04000085 RID: 133
Moved,
// Token: 0x04000086 RID: 134
Stationary,
// Token: 0x04000087 RID: 135
Ended,
// Token: 0x04000088 RID: 136
Canceled
}
}