recrownedathenaeum/RecrownedAthenaeum/UI/Skin/Definitions/TextSkinDefinition.cs

27 lines
567 B
C#
Raw Normal View History

2018-12-11 07:12:34 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Net.Mime.MediaTypeNames;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
class TextSkinDefinition : ISkinDefinition
{
public string font;
public string color;
public TextSkinDefinition(string font, string color)
{
this.font = font;
this.color = color;
}
public Type UIModuleType()
{
return typeof(Text);
}
}
}