obfuz/Editor/Virtualization/IFunction.cs

10 lines
229 B
C#
Raw Normal View History

2025-04-20 14:23:40 +08:00
namespace Obfuz.Virtualization
{
public interface IFunction
{
2025-04-20 15:20:13 +08:00
DataNodeType ReturnType { get; }
2025-04-22 08:13:58 +08:00
ConstExpression CreateCallable(DataNodeType type, object value, CreateExpressionOptions options);
2025-04-20 14:23:40 +08:00
}
}