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

17 lines
375 B
C#
Raw Normal View History

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