16 lines
416 B
C#
16 lines
416 B
C#
namespace Steamworks
|
|
{
|
|
public enum EFriendRelationship
|
|
{
|
|
k_EFriendRelationshipNone = 0,
|
|
k_EFriendRelationshipBlocked = 1,
|
|
k_EFriendRelationshipRequestRecipient = 2,
|
|
k_EFriendRelationshipFriend = 3,
|
|
k_EFriendRelationshipRequestInitiator = 4,
|
|
k_EFriendRelationshipIgnored = 5,
|
|
k_EFriendRelationshipIgnoredFriend = 6,
|
|
k_EFriendRelationshipSuggested_DEPRECATED = 7,
|
|
k_EFriendRelationshipMax = 8
|
|
}
|
|
}
|