CTT/Unity/Assets/Hotfix/Logic/Behaviour/Game/Helper/NetLoadingHelper.cs

25 lines
443 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET;
using System;
using System.Collections.Generic;
namespace ET
{
public class NetLoadingHelper
{
public static void Play()
{
Game.EventSystem.Publish_Sync(new ET.EventType.PlayNetLoading
{
});
}
public static void Stop()
{
Game.EventSystem.Publish_Sync(new ET.EventType.StopNetLoading
{
});
}
}
}