Files
2024-11-20 15:21:28 +01:00

20 lines
434 B
C#

#if UNITY_EDITOR
using System;
using System.Linq;
using System.Reflection;
using UnityEditor;
#endif
using System.Collections.Generic;
namespace Invector.DefineSymbolsManager
{
public class AIDefineSymbols : InvectorDefineSymbols
{
public override List<string> GetSymbols
{
get
{
return new List<string>() { "INVECTOR_AI_TEMPLATE" };
}
}
}
}