Files

20 lines
374 B
C#
Raw Permalink Normal View History

2025-03-31 11:16:52 +08:00
/****************************************************
IFontChange.cs
zz
2022/3/6 16:34:36
*****************************************************/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Stary.Evo.Editor
{
interface IFontChange
{
void Creat();
}
}