GameTokenInfoComponent.cs 309 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof(Scene))]
  5. public class GameTokenInfoComponent : Entity, IAwake
  6. {
  7. /** token信息 key:token, value:userId **/
  8. public readonly Dictionary<string, long> tokenInfo = new Dictionary<string, long>();
  9. }
  10. }