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