21 lines
335 B
C#
21 lines
335 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
|
|
[Serializable]
|
|
public class FontModeInfo
|
|
{
|
|
public Font _Font;
|
|
public Color _FontColor;
|
|
public int _FontSize;
|
|
}
|
|
|
|
public class UIFontMode : MonoBehaviour
|
|
{
|
|
|
|
public List<FontModeInfo> _FontModeInfo;
|
|
|
|
}
|