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

SendBotProgressMessage() public static method

public static SendBotProgressMessage ( MessageDestination destination, BotProgressMessage val ) : void
destination MessageDestination
val BotProgressMessage
return void
        public static void SendBotProgressMessage(MessageDestination destination, BotProgressMessage val)
        {
            SendBotProgressMessage(destination, IntPtr.Zero, IntPtr.Zero , val.Flag, val.Progress, val.Header);
        }

Same methods

MessageFunctions::SendBotProgressMessage ( MessageDestination destination, IntPtr playerEntity, BotProgressMessage val ) : void
MessageFunctions::SendBotProgressMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, BotProgressMessage val ) : void
MessageFunctions::SendBotProgressMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, byte Flag, byte Progress, string Header ) : void
MessageFunctions::SendBotProgressMessage ( this player, BotProgressMessage val ) : void
MessageFunctions::SendBotProgressMessage ( this player, IntPtr floatValue, BotProgressMessage val ) : void
MessageFunctions::SendBotProgressMessage ( this player, byte Flag, byte Progress, string Header ) : void
MessageFunctions