TH1/Unity/Assets/Scripts/Hotfix/Server/Benchmark/BenchmarkServerComponentSystem.cs
2025-07-17 18:26:28 +08:00

13 lines
288 B
C#

using System.Net;
namespace ET.Server
{
[EntitySystemOf(typeof(BenchmarkServerComponent))]
public static partial class BenchmarkServerComponentSystem
{
[EntitySystem]
private static void Awake(this BenchmarkServerComponent self)
{
}
}
}