[+] Update Procedure Path And asmdef

[+] Update Procedure Path And asmdef
This commit is contained in:
ALEXTANG
2023-04-26 13:30:23 +08:00
parent 7db0d3fcc4
commit d3272e1bb1
33 changed files with 4 additions and 9 deletions

View File

@@ -0,0 +1,26 @@
using System;
namespace GameMain
{
public class LoadUpdateLogic
{
private static LoadUpdateLogic _instance;
public Action<int> DownloadCompleteAction = null;
public Action<float> DownProgressAction = null;
public Action<bool,GameStatus> UnpackedCompleteAction = null;
public Action<float,GameStatus> UnpackedProgressAction = null;
public static LoadUpdateLogic Instance
{
get
{
if (_instance == null)
{
_instance = new LoadUpdateLogic();
}
return _instance;
}
}
}
}