Initial Commit

This commit is contained in:
Shank 2011-05-28 20:49:41 -06:00
commit 5dc0cf584c
3351 changed files with 51753 additions and 0 deletions

13
Terraria/ChatLine.cs Normal file
View file

@ -0,0 +1,13 @@
namespace Terraria
{
using Microsoft.Xna.Framework;
using System;
public class ChatLine
{
public Color color = Color.White;
public int showTime;
public string text = "";
}
}