2018-12-11 01:12:34 -06:00
|
|
|
|
using System;
|
|
|
|
|
using static System.Net.Mime.MediaTypeNames;
|
|
|
|
|
|
|
|
|
|
namespace RecrownedAthenaeum.UI.Skin.Definitions
|
|
|
|
|
{
|
2019-01-15 17:03:17 -06:00
|
|
|
|
class TextSkinDefinition : ISkinDefinitionData
|
2018-12-11 01:12:34 -06:00
|
|
|
|
{
|
|
|
|
|
public string color;
|
2018-12-11 01:15:10 -06:00
|
|
|
|
public Type UIModuleType { get { return typeof(Text); } }
|
2018-12-11 01:12:34 -06:00
|
|
|
|
|
2019-01-20 01:08:38 -06:00
|
|
|
|
public TextSkinDefinition(string color)
|
2018-12-11 01:12:34 -06:00
|
|
|
|
{
|
|
|
|
|
this.color = color;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|