19 lines
458 B
C#
19 lines
458 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|