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

SendReceiveWMessage() public static method

public static SendReceiveWMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity ) : void
destination MessageDestination
floatValue IntPtr
playerEntity IntPtr
return void
        public static void SendReceiveWMessage(MessageDestination destination, IntPtr floatValue, IntPtr playerEntity)
        {
            Message.Begin(destination, Message.GetUserMessageID("ReceiveW"), floatValue, playerEntity);

            Message.End();
        }

Same methods

MessageFunctions::SendReceiveWMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, ReceiveWMessage val ) : void
MessageFunctions::SendReceiveWMessage ( MessageDestination destination, IntPtr playerEntity, ReceiveWMessage val ) : void
MessageFunctions::SendReceiveWMessage ( MessageDestination destination, ReceiveWMessage val ) : void
MessageFunctions::SendReceiveWMessage ( this player ) : void
MessageFunctions::SendReceiveWMessage ( this player, IntPtr floatValue, ReceiveWMessage val ) : void
MessageFunctions::SendReceiveWMessage ( this player, ReceiveWMessage val ) : void
MessageFunctions