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

SendTeamScoreMessage() public static method

public static SendTeamScoreMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, TeamScoreMessage val ) : void
destination MessageDestination
floatValue IntPtr
playerEntity IntPtr
val TeamScoreMessage
return void
        public static void SendTeamScoreMessage(MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, TeamScoreMessage val)
        {
            SendTeamScoreMessage(destination, floatValue,playerEntity , val.Score);
        }

Same methods

MessageFunctions::SendTeamScoreMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, string Score ) : void
MessageFunctions::SendTeamScoreMessage ( MessageDestination destination, IntPtr playerEntity, TeamScoreMessage val ) : void
MessageFunctions::SendTeamScoreMessage ( MessageDestination destination, TeamScoreMessage val ) : void
MessageFunctions::SendTeamScoreMessage ( this player, IntPtr floatValue, TeamScoreMessage val ) : void
MessageFunctions::SendTeamScoreMessage ( this player, TeamScoreMessage val ) : void
MessageFunctions::SendTeamScoreMessage ( this player, string Score ) : void
MessageFunctions