Files
plugin-library/Assets/03.YooAsset/Samples~/Extension Sample/Editor/MacroSupport/MacroDefine.cs

19 lines
405 B
C#
Raw Normal View History

2025-10-31 11:18:23 +08:00
using System.Collections.Generic;
2026-04-13 22:36:57 +08:00
#if YOO_MACRO_SUPPORT
2025-10-31 11:18:23 +08:00
namespace YooAsset.Editor
{
public class MacroDefine
{
/// <summary>
/// YooAsset版本宏定义
/// </summary>
public static readonly List<string> Macros = new List<string>()
{
"YOO_ASSET_2",
"YOO_ASSET_2_3",
"YOO_ASSET_2_3_OR_NEWER",
};
}
}
#endif