AddressableI18nInfo.cs 398 B

12345678910111213141516171819202122
  1. using XGame.Framework.i18n;
  2. using System;
  3. namespace XGame.Framework.Asset.Addressable.Data
  4. {
  5. [Serializable]
  6. public class AddressableI18nInfo
  7. {
  8. [Serializable]
  9. public struct I18nData
  10. {
  11. public LanguageType langFlag;
  12. public long addressableId;
  13. }
  14. public long addressableId;
  15. public I18nData[] i18nDatas;
  16. }
  17. }