BattleBit-Community-Server-API/BattleBitAPI/Common/Arguments/OnPlayerKillArguments.cs
2023-08-10 13:42:51 +03:00

17 lines
403 B
C#

using System.Numerics;
namespace BattleBitAPI.Common
{
public struct OnPlayerKillArguments<TPlayer> where TPlayer : Player
{
public TPlayer Killer;
public Vector3 KillerPosition;
public TPlayer Victim;
public Vector3 VictimPosition;
public string KillerTool;
public PlayerBody BodyPart;
public ReasonOfDamage SourceOfDamage;
}
}