// 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 input device used by a remote client, if known. These can be updated during a play session.
///
public enum AntiCheatCommonClientInput : int
{
///
/// Unknown input device
///
Unknown = 0,
///
/// The client is using mouse and keyboard
///
MouseKeyboard = 1,
///
/// The client is using a gamepad or game controller
///
Gamepad = 2,
///
/// The client is using a touch input device (e.g. phone/tablet screen)
///
TouchInput = 3
}
}