Mono compatibility

This commit is contained in:
Deathmax 2011-12-13 17:24:46 +08:00
parent 075a909e0a
commit 57f45e12bf
5 changed files with 9 additions and 13 deletions

View file

@ -24,8 +24,6 @@ using Terraria;
using TShockAPI.Net;
using Microsoft.Xna.Framework.Graphics;
namespace TShockAPI
{
public class TSPlayer
@ -293,11 +291,6 @@ namespace TShockAPI
SendMessage(msg, color.R, color.G, color.B);
}
public virtual void SendMessage(string msg, Microsoft.Xna.Framework.Color color)
{
SendMessage(msg, color.R, color.G, color.B);
}
public virtual void SendMessage(string msg, byte red, byte green, byte blue)
{
SendData(PacketTypes.ChatText, msg, 255, red, green, blue);