2011-05-07 01:17:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.MultiClient.tools
|
|
|
|
|
{
|
|
|
|
|
class LuaText
|
|
|
|
|
{
|
2013-04-14 23:56:45 +00:00
|
|
|
|
public int X;
|
|
|
|
|
public int Y;
|
|
|
|
|
public Color Color;
|
|
|
|
|
public Color Outline;
|
|
|
|
|
public String Message;
|
2011-05-07 01:17:19 +00:00
|
|
|
|
|
|
|
|
|
public LuaText()
|
|
|
|
|
{
|
2013-04-14 23:56:45 +00:00
|
|
|
|
X = 0;
|
|
|
|
|
Y = 0;
|
|
|
|
|
Color = Color.White;
|
|
|
|
|
Outline = Color.Black;
|
|
|
|
|
Message = "";
|
2011-05-07 01:17:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|