Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
biossocialservice.c
Go to the documentation of this file.
1
3
5{
6 string m_Uid;
7 string m_DisplayName;
8 bool m_IsFavorite;
9 bool m_IsFollowed;
10
11 static bool Compare( BiosFriendInfo a, BiosFriendInfo b )
12 {
13 return ( a.m_Uid == b.m_Uid && a.m_DisplayName == b.m_DisplayName && a.m_IsFavorite == b.m_IsFavorite && a.m_IsFollowed == b.m_IsFollowed );
14 }
15};
16
18
20
24{
26
32 proto native EBiosError ShowUserProfileAsync(string uid_target);
33
35
40 proto native EBiosError GetFriendsAsync();
41
43
48 void OnUserProfileAsync(EBiosError error)
49 {
51 }
52
54
58 void OnFriendsAsync(BiosFriendInfoArray friend_list, EBiosError error)
59 {
60 OnlineServices.OnFriendsAsync( friend_list, error );
61 }
62};
EBiosError
Possible Error codes for bios API. This is the list of errors that can be returned from bios API....
array< ref BiosFriendInfo > BiosFriendInfoArray
BiosFriendInfo represents friend information.
BiosSocialService is used to query friend list and other social features for the current user.
static void OnUserProfileAsync(EBiosError error)
static void OnFriendsAsync(BiosFriendInfoArray friend_list, EBiosError error)
Result for an object found in CGame.IsBoxCollidingGeometryProxy.