You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
740 B
28 lines
740 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.Friends
|
|
{
|
|
/// <summary>
|
|
/// An enumeration of the different friendship statuses.
|
|
/// </summary>
|
|
public enum FriendsStatus : int
|
|
{
|
|
/// <summary>
|
|
/// The two accounts have no friendship status
|
|
/// </summary>
|
|
NotFriends = 0,
|
|
/// <summary>
|
|
/// The local account has sent a friend invite to the other account
|
|
/// </summary>
|
|
InviteSent = 1,
|
|
/// <summary>
|
|
/// The other account has sent a friend invite to the local account
|
|
/// </summary>
|
|
InviteReceived = 2,
|
|
/// <summary>
|
|
/// The accounts have accepted friendship
|
|
/// </summary>
|
|
Friends = 3
|
|
}
|
|
}
|