mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
10 lines
233 B
C#
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();
|
|
}
|
|
} |