16 lines
417 B
C#
16 lines
417 B
C#
using UnityEngine;
|
|
|
|
namespace HK
|
|
{
|
|
[CreateAssetMenu(fileName = "FontThemeObject", menuName = "ScriptableObjects/FontThemeObject", order = 2)]
|
|
public class FontThemeScriptableObject : ThemeBaseScriptableObject
|
|
{
|
|
public class Data
|
|
{
|
|
public Sprite bg;
|
|
public Color[] bgColors;
|
|
public Sprite font;
|
|
public Color[] fontColors;
|
|
}
|
|
}
|
|
} |