11 lines
295 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|