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.

48 lines
1.1 KiB

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.AntiCheatCommon
{
/// <summary>
/// Flags describing the platform of a remote client, if known
/// </summary>
public enum AntiCheatCommonClientPlatform : int
{
/// <summary>
/// Unknown platform
/// </summary>
Unknown = 0,
/// <summary>
/// The client is playing on Windows
/// </summary>
Windows = 1,
/// <summary>
/// The client is playing on Mac
/// </summary>
Mac = 2,
/// <summary>
/// The client is playing on Linux
/// </summary>
Linux = 3,
/// <summary>
/// The client is playing on an Xbox device
/// </summary>
Xbox = 4,
/// <summary>
/// The client is playing on a PlayStation device
/// </summary>
PlayStation = 5,
/// <summary>
/// The client is playing on a Nintendo device
/// </summary>
Nintendo = 6,
/// <summary>
/// The client is playing on iOS
/// </summary>
iOS = 7,
/// <summary>
/// The client is playing on Android
/// </summary>
Android = 8
}
}