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

SendViewModeMessage() public static method

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

            Message.End();
        }

Same methods

MessageFunctions::SendViewModeMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, ViewModeMessage val ) : void
MessageFunctions::SendViewModeMessage ( MessageDestination destination, IntPtr playerEntity, ViewModeMessage val ) : void
MessageFunctions::SendViewModeMessage ( MessageDestination destination, ViewModeMessage val ) : void
MessageFunctions::SendViewModeMessage ( this player ) : void
MessageFunctions::SendViewModeMessage ( this player, IntPtr floatValue, ViewModeMessage val ) : void
MessageFunctions::SendViewModeMessage ( this player, ViewModeMessage val ) : void
MessageFunctions