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();
|
|
}
|
|
} |