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

18 lines
513 B
C#

using RecrownedAthenaeum.UI.Modular.Modules.Interactive;
using System;
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;
}
}
}