GateSessionKeyComponent.cs 225 B

123456789
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. public class GateSessionKeyComponent : Entity, IAwake
  5. {
  6. public readonly Dictionary<long, string> sessionKey = new Dictionary<long, string>();
  7. }
  8. }