25 lines
443 B
C#
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
|
|||
|
{
|
|||
|
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|