obfuz/Editor/Emit/IDataNode.cs

21 lines
361 B
C#
Raw Normal View History

2025-04-20 14:23:40 +08:00
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using UnityEditor;
namespace Obfuz.Emit
2025-04-20 14:23:40 +08:00
{
public interface IDataNode
{
DataNodeType Type { get; }
object Value { get; }
2025-04-22 19:34:46 +08:00
void Init(CreateExpressionOptions options);
2025-04-20 14:23:40 +08:00
void Compile(CompileContext ctx);
}
}