mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-30 21:17:20 -03:00
18 lines
403 B
C#
18 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;
|
|||
|
}
|
|||
|
}
|