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

SendBombDropMessage() public static method

public static SendBombDropMessage ( MessageDestination destination, BombDropMessage val ) : void
destination MessageDestination
val BombDropMessage
return void
        public static void SendBombDropMessage(MessageDestination destination, BombDropMessage val)
        {
            SendBombDropMessage(destination, IntPtr.Zero, IntPtr.Zero , val.CoordX, val.CoordY, val.CoordZ, val.Flag);
        }

Same methods

MessageFunctions::SendBombDropMessage ( MessageDestination destination, IntPtr playerEntity, BombDropMessage val ) : void
MessageFunctions::SendBombDropMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, BombDropMessage val ) : void
MessageFunctions::SendBombDropMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, int CoordX, int CoordY, int CoordZ, byte Flag ) : void
MessageFunctions::SendBombDropMessage ( this player, BombDropMessage val ) : void
MessageFunctions::SendBombDropMessage ( this player, IntPtr floatValue, BombDropMessage val ) : void
MessageFunctions::SendBombDropMessage ( this player, int CoordX, int CoordY, int CoordZ, byte Flag ) : void
MessageFunctions