TokenComponent.cs 208 B

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