// 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 a remote client. These can be updated during a play session /// [System.Flags] public enum AntiCheatCommonClientFlags : int { /// /// No particular flags relevant for this client /// None = 0, /// /// The client has admin privileges on the game server /// Admin = (1 << 0) } }