CTT/Unity/Assets/Hotfix/Logic/Behaviour/Game/System/GetInfoComponentSystem.cs

11 lines
295 B
C#

namespace ET
{
public static class GetInfoComponentSystem
{
public static async ETTask Start(this GetInfoComponent self)
{
await TimerComponent.Instance.WaitAsync(1000);
self.ZoneScene().GetComponent<StarSoulBag>().InitData();
}
}
}