TH1/Unity/Assets/Scripts/Model/Server/Demo/Gate/GateSessionKeyComponent.cs
2025-07-17 18:26:28 +08:00

10 lines
233 B
C#

using System.Collections.Generic;
namespace ET.Server
{
[ComponentOf(typeof(Scene))]
public class GateSessionKeyComponent : Entity, IAwake
{
public readonly Dictionary<long, string> sessionKey = new();
}
}