17 lines
388 B
C#
Raw Normal View History

2018-12-11 01:12:34 -06:00
using System;
using static System.Net.Mime.MediaTypeNames;
2019-01-27 17:39:18 -06:00
namespace RecrownedAthenaeum.UI.SkinSystem.Definitions
2018-12-11 01:12:34 -06:00
{
public class TextSkinDefinition : ISkinDefinitionData
2018-12-11 01:12:34 -06:00
{
public string color;
public Type UIModuleType { get { return typeof(Text); } }
2018-12-11 01:12:34 -06:00
public TextSkinDefinition(string color)
2018-12-11 01:12:34 -06:00
{
this.color = color;
}
}
}