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

11 lines
295 B
C#
Raw Normal View History

2021-05-01 22:06:12 +08:00
namespace ET
{
public static class GetInfoComponentSystem
{
public static async ETTask Start(this GetInfoComponent self)
{
await TimerComponent.Instance.WaitAsync(1000);
self.ZoneScene().GetComponent<StarSoulBag>().InitData();
}
}
}