13 lines
288 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |