blob: f43047954df98bf012f0506953481e4c8bcf2557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace Steamworks;
public enum EFriendRelationship
{
k_EFriendRelationshipNone,
k_EFriendRelationshipBlocked,
k_EFriendRelationshipRequestRecipient,
k_EFriendRelationshipFriend,
k_EFriendRelationshipRequestInitiator,
k_EFriendRelationshipIgnored,
k_EFriendRelationshipIgnoredFriend,
k_EFriendRelationshipSuggested_DEPRECATED,
k_EFriendRelationshipMax
}
|