13 lines
223 B
C#
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 = "";
|
|
}
|
|
}
|
|
|