Files
plugin-library/Assets/Main/HotfixUpdateScript/Runtime/HotUpdate/Init/Fsm/FsmLoadSystem.cs

19 lines
471 B
C#
Raw Normal View History

2025-07-02 10:05:26 +08:00
using Main;
namespace Stary.Evo
2025-05-23 18:26:47 +08:00
{
2025-09-02 14:15:18 +08:00
public class FsmLoadSystem : FsmSystemAsync , IFsmSystemAsync
2025-05-23 18:26:47 +08:00
{
private OpenDomainType OpenDomainType { get; set; }
2025-07-02 10:05:26 +08:00
public ProgressBarPanel ProgressBarPanel { get; set; }
2025-05-23 18:26:47 +08:00
public void SetOpenDomainType(OpenDomainType type)
{
this.OpenDomainType = type;
}
public OpenDomainType GetOpenDomainType()
{
return this.OpenDomainType;
}
}
}