23 lines
463 B
C#
23 lines
463 B
C#
|
using Microsoft.Xna.Framework;
|
||
|
using Microsoft.Xna.Framework.Graphics;
|
||
|
|
||
|
namespace Elite
|
||
|
{
|
||
|
public class TextElement
|
||
|
{
|
||
|
public string Text;
|
||
|
public Vector2 Position;
|
||
|
public Color Color;
|
||
|
|
||
|
public TextElement(string text, Vector2 position, Color color)
|
||
|
{
|
||
|
Text = text;
|
||
|
Position = position;
|
||
|
Color = color;
|
||
|
}
|
||
|
|
||
|
public void Draw(SpriteBatch batch)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|