really delete LuaText

This commit is contained in:
adelikat 2013-10-28 13:50:18 +00:00
parent 8b173a26f4
commit 38d9248742
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
using System;
using System.Drawing;
namespace BizHawk.MultiClient.tools
{
class LuaText
{
public int X;
public int Y;
public Color Color;
public Color Outline;
public String Message;
public LuaText()
{
X = 0;
Y = 0;
Color = Color.White;
Outline = Color.Black;
Message = "";
}
}
}