17 lines
375 B
C#
17 lines
375 B
C#
using System;
|
|
using static System.Net.Mime.MediaTypeNames;
|
|
|
|
namespace RecrownedAthenaeum.UI.Skin.Definitions
|
|
{
|
|
class TextSkinDefinition : ISkinDefinitionData
|
|
{
|
|
public string color;
|
|
public Type UIModuleType { get { return typeof(Text); } }
|
|
|
|
public TextSkinDefinition(string color)
|
|
{
|
|
this.color = color;
|
|
}
|
|
}
|
|
}
|