SharpMod.Messages.MessageFunctions.SendDeathMsgMessage C# (CSharp) Method

SendDeathMsgMessage() public static method

public static SendDeathMsgMessage ( MessageDestination destination, DeathMsgMessage val ) : void
destination MessageDestination
val DeathMsgMessage
return void
        public static void SendDeathMsgMessage(MessageDestination destination, DeathMsgMessage val)
        {
            SendDeathMsgMessage(destination, IntPtr.Zero, IntPtr.Zero , val.KillerID, val.VictimID, val.IsHeadshot, val.TruncatedWeaponName);
        }

Same methods

MessageFunctions::SendDeathMsgMessage ( MessageDestination destination, IntPtr playerEntity, DeathMsgMessage val ) : void
MessageFunctions::SendDeathMsgMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, DeathMsgMessage val ) : void
MessageFunctions::SendDeathMsgMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, byte KillerID, byte VictimID, byte IsHeadshot, string TruncatedWeaponName ) : void
MessageFunctions::SendDeathMsgMessage ( this player, DeathMsgMessage val ) : void
MessageFunctions::SendDeathMsgMessage ( this player, IntPtr floatValue, DeathMsgMessage val ) : void
MessageFunctions::SendDeathMsgMessage ( this player, byte KillerID, byte VictimID, byte IsHeadshot, string TruncatedWeaponName ) : void
MessageFunctions