RedDotLinkData.cs 259 B

1234567891011121314151617
  1. #if UNITY_EDITOR
  2. using System.Collections.Generic;
  3. namespace YIUIFramework.Editor
  4. {
  5. internal class RedDotLinkData
  6. {
  7. internal int Key;
  8. internal bool ConfigSet;
  9. internal List<int> LinkKey = new List<int>();
  10. }
  11. }
  12. #endif