using RecrownedAthenaeum.UI.Modular.Modules.Interactive; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RecrownedAthenaeum.UI.Skin.Definitions { public class ButtonSkinDefinition : ISkinDefinition { public string upRegion, downRegion, disabledRegion, selectedRegion; public Type UIModuleType { get { return typeof(Button); } } public ButtonSkinDefinition(string downRegion, string upRegion) { this.downRegion = downRegion; this.upRegion = upRegion; } } }