You've already forked taptap2024_GJ_chidouren
17 lines
396 B
C#
17 lines
396 B
C#
using UniFramework.Event;
|
|
|
|
namespace Game.EventDefine
|
|
{
|
|
public static class GlobalEventDefine
|
|
{
|
|
/// <summary>
|
|
/// 刷新视图
|
|
/// </summary>
|
|
public class RefreshView : IEventMessage
|
|
{
|
|
private RefreshView () { }
|
|
|
|
public static void SendMessage() => UniEvent.SendMessage (new RefreshView ());
|
|
}
|
|
}
|
|
} |