zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Hotfix/Logic/Behaviour/Game/Helper/NetLoadingHelper.cs

25 lines
443 B
C#

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
{
});
}
}
}