namespace ET.Client { [Event(SceneType.LockStep)] public class AfterCreateClientScene_LSAddComponent: AEvent { protected override async ETTask Run(Scene scene, AfterCreateClientScene args) { scene.AddComponent(); scene.AddComponent(); await ETTask.CompletedTask; } } }