mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 10:12:20 +00:00
28 lines
643 B
C#
28 lines
643 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MultiTheftAuto.EventArgs
|
|
{
|
|
public class PedWastedEventArgs : ElementEventArgs
|
|
{
|
|
public PedWastedEventArgs( Element _this, int totalAmmo, Element killer, int killerWeapon, int bodypart, bool stealth )
|
|
: base( _this )
|
|
{
|
|
this.TotalAmmo = totalAmmo;
|
|
this.Killer = killer;
|
|
this.KillerWeapon = killerWeapon;
|
|
this.Bodypart = bodypart;
|
|
this.Stealth = stealth;
|
|
}
|
|
|
|
public int TotalAmmo;
|
|
public Element Killer;
|
|
public int KillerWeapon;
|
|
public int Bodypart;
|
|
public bool Stealth;
|
|
}
|
|
}
|