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

19 lines
442 B
C#

using System;
using static System.Net.Mime.MediaTypeNames;
namespace RecrownedAthenaeum.UI.Skin.Definitions
{
class TextSkinDefinition : ISkinDefinition
{
public string font;
public string color;
public Type UIModuleType { get { return typeof(Text); } }
public TextSkinDefinition(string font, string color)
{
this.font = font;
this.color = color;
}
}
}