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
+29
View File
@@ -0,0 +1,29 @@
using System;
namespace UnityEngine.SocialPlatforms
{
// Token: 0x02000388 RID: 904
public interface ILocalUser : IUserProfile
{
// Token: 0x0600361E RID: 13854
void Authenticate(Action<bool> callback);
// Token: 0x0600361F RID: 13855
void Authenticate(Action<bool, string> callback);
// Token: 0x06003620 RID: 13856
void LoadFriends(Action<bool> callback);
// Token: 0x17000C6F RID: 3183
// (get) Token: 0x06003621 RID: 13857
IUserProfile[] friends { get; }
// Token: 0x17000C70 RID: 3184
// (get) Token: 0x06003622 RID: 13858
bool authenticated { get; }
// Token: 0x17000C71 RID: 3185
// (get) Token: 0x06003623 RID: 13859
bool underage { get; }
}
}