2018-12-11 07:12:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
using static System.Net.Mime.MediaTypeNames;
|
|
|
|
|
|
2019-01-27 23:39:18 +00:00
|
|
|
|
namespace RecrownedAthenaeum.UI.SkinSystem.Definitions
|
2018-12-11 07:12:34 +00:00
|
|
|
|
{
|
2019-01-27 23:59:27 +00:00
|
|
|
|
public class TextSkinDefinition : ISkinDefinitionData
|
2018-12-11 07:12:34 +00:00
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
2019-01-20 07:08:38 +00:00
|
|
|
|
public TextSkinDefinition(string color)
|
2018-12-11 07:12:34 +00:00
|
|
|
|
{
|
|
|
|
|
this.color = color;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|