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

SendMoneyMessage() public static method

public static SendMoneyMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, MoneyMessage val ) : void
destination MessageDestination
floatValue IntPtr
playerEntity IntPtr
val MoneyMessage
return void
        public static void SendMoneyMessage(MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, MoneyMessage val)
        {
            SendMoneyMessage(destination, floatValue,playerEntity , val.Amount, val.Flag);
        }

Same methods

MessageFunctions::SendMoneyMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, long Amount, byte Flag ) : void
MessageFunctions::SendMoneyMessage ( MessageDestination destination, IntPtr playerEntity, MoneyMessage val ) : void
MessageFunctions::SendMoneyMessage ( MessageDestination destination, MoneyMessage val ) : void
MessageFunctions::SendMoneyMessage ( this player, IntPtr floatValue, MoneyMessage val ) : void
MessageFunctions::SendMoneyMessage ( this player, MoneyMessage val ) : void
MessageFunctions::SendMoneyMessage ( this player, long Amount, byte Flag ) : void
MessageFunctions