GateSessionKeyComponent.cs 258 B

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