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

19 lines
458 B
C#
Raw Normal View History

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