BenchmarkServerComponentSystem.cs 288 B

12345678910111213
  1. using System.Net;
  2. namespace ET.Server
  3. {
  4. [EntitySystemOf(typeof(BenchmarkServerComponent))]
  5. public static partial class BenchmarkServerComponentSystem
  6. {
  7. [EntitySystem]
  8. private static void Awake(this BenchmarkServerComponent self)
  9. {
  10. }
  11. }
  12. }