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

SendHideStatusIcon() public static method

Sends a message to show a status icon
public static SendHideStatusIcon ( this player, string spriteName ) : void
player this /// A player ///
spriteName string /// The spritname of the status icon ///
return void
        public static void SendHideStatusIcon(this Player player, string spriteName)
        {
            player.SendStatusIconMessage((byte)StatusIconState.Hide, spriteName);
        }
MessageFunctions