MacroDefine.cs 377 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace YooAsset.Editor
  3. {
  4. public class MacroDefine
  5. {
  6. /// <summary>
  7. /// YooAsset版本宏定义
  8. /// </summary>
  9. public static readonly List<string> Macros = new List<string>()
  10. {
  11. "YOO_ASSET_2",
  12. "YOO_ASSET_2_3",
  13. "YOO_ASSET_2_3_OR_NEWER",
  14. };
  15. }
  16. }