12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Collections.Generic;
- using System.Net.Sockets;
- using System.Threading.Tasks;
- namespace ET.Server
- {
- public static class BenchmarkClientComponentSystem
- {
- public class AwakeSystem: AwakeSystem<BenchmarkClientComponent>
- {
- protected override void Awake(BenchmarkClientComponent self)
- {
- for (int i = 0; i < 50; ++i)
- {
- self.Start().Coroutine();
- }
- }
- }
- private static async ETTask Start(this BenchmarkClientComponent self)
- {
- await Task.CompletedTask;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
- }
|