1234567891011 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof(Scene))]
- public class GameTokenInfoComponent : Entity, IAwake
- {
- /** token信息 key:token, value:userId **/
- public readonly Dictionary<string, long> tokenInfo = new Dictionary<string, long>();
- }
- }
|