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
+18
View File
@@ -0,0 +1,18 @@
using System;
using UnityEngine;
// Token: 0x02000C49 RID: 3145
public class AvatarSelectionElement : ScriptableObject
{
// Token: 0x06018B9D RID: 101277 RVA: 0x006D6EDC File Offset: 0x006D50DC
public AvatarSelectionElement()
{
if (string.IsNullOrEmpty(this.Guid))
{
this.Guid = global::System.Guid.NewGuid().ToString();
}
}
// Token: 0x04004339 RID: 17209
public string Guid = string.Empty;
}