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