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; } } }