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

23 lines
560 B
C#
Raw Normal View History

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 TextButtonSkinDefinition : ButtonSkinDefinition
{
public string fontName;
public string fontColor;
public new Type UIModuleType => typeof(TextButton);
public TextButtonSkinDefinition(string downRegion, string upRegion) : base(downRegion, upRegion)
{
}
}
}