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

SendTutorCloseMessage() public static method

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

            Message.End();
        }

Same methods

MessageFunctions::SendTutorCloseMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, TutorCloseMessage val ) : void
MessageFunctions::SendTutorCloseMessage ( MessageDestination destination, IntPtr playerEntity, TutorCloseMessage val ) : void
MessageFunctions::SendTutorCloseMessage ( MessageDestination destination, TutorCloseMessage val ) : void
MessageFunctions::SendTutorCloseMessage ( this player ) : void
MessageFunctions::SendTutorCloseMessage ( this player, IntPtr floatValue, TutorCloseMessage val ) : void
MessageFunctions::SendTutorCloseMessage ( this player, TutorCloseMessage val ) : void
MessageFunctions