scripts
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user