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
731 B

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.AntiCheatCommon
{
/// <summary>
/// The source of a damage event
/// </summary>
public enum AntiCheatCommonPlayerTakeDamageSource : int
{
/// <summary>
/// No particular source relevant
/// </summary>
None = 0,
/// <summary>
/// Damage caused by a player controlled character
/// </summary>
Player = 1,
/// <summary>
/// Damage caused by a non-player character such as an AI enemy
/// </summary>
NonPlayerCharacter = 2,
/// <summary>
/// Damage caused by the world (falling off level, into lava, etc)
/// </summary>
World = 3
}
}