20 lines
374 B
C#
20 lines
374 B
C#
/****************************************************
|
||
文件: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();
|
||
}
|
||
}
|