TShock/Terraria/ChatLine.cs
2011-05-28 20:49:41 -06:00

13 lines
223 B
C#

namespace Terraria
{
using Microsoft.Xna.Framework;
using System;
public class ChatLine
{
public Color color = Color.White;
public int showTime;
public string text = "";
}
}