1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
2024-07-16 22:27:27 +01:00

26 lines
608 B
C#

using Data.Models;
namespace IW4MAdmin.Plugins.Stats.Client.Game
{
public enum HitType
{
Unknown,
Kill,
Damage,
WasKilled,
WasDamaged,
Suicide
}
public class HitInfo
{
public Reference.Game Game { get; set; }
public int EntityId { get; set; }
public bool IsVictim { get; set; }
public HitType HitType { get; set; }
public int Damage { get; set; }
public string Location { get; set; }
public string MeansOfDeath { get; set; }
public WeaponInfo Weapon { get; set; }
}
}