mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
19 lines
408 B
C#
19 lines
408 B
C#
using System.Collections.Generic;
|
|
|
|
#if YOO_ASSET_EXPERIMENT
|
|
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 |