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

SendShowTimerMessage() public static method

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

            Message.End();
        }

Same methods

MessageFunctions::SendShowTimerMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, ShowTimerMessage val ) : void
MessageFunctions::SendShowTimerMessage ( MessageDestination destination, IntPtr playerEntity, ShowTimerMessage val ) : void
MessageFunctions::SendShowTimerMessage ( MessageDestination destination, ShowTimerMessage val ) : void
MessageFunctions::SendShowTimerMessage ( this player ) : void
MessageFunctions::SendShowTimerMessage ( this player, IntPtr floatValue, ShowTimerMessage val ) : void
MessageFunctions::SendShowTimerMessage ( this player, ShowTimerMessage val ) : void
MessageFunctions