recrownedgtk/RecrownedAthenaeum/UI/SkinSystem/Definitions/TextSkinDefinition.cs
2019-01-27 17:39:18 -06:00

17 lines
381 B
C#

using System;
using static System.Net.Mime.MediaTypeNames;
namespace RecrownedAthenaeum.UI.SkinSystem.Definitions
{
class TextSkinDefinition : ISkinDefinitionData
{
public string color;
public Type UIModuleType { get { return typeof(Text); } }
public TextSkinDefinition(string color)
{
this.color = color;
}
}
}