11 lines
183 B
C#
11 lines
183 B
C#
using Microsoft.Xna.Framework;
|
|
using System;
|
|
namespace Terraria
|
|
{
|
|
public class ChatLine
|
|
{
|
|
public Color color = Color.White;
|
|
public int showTime;
|
|
public string text = "";
|
|
}
|
|
}
|