Files
plugin-library/Assets/01.HybridCLR/Editor/MethodBridge/CallNativeMethodSignatureInfo.cs

12 lines
237 B
C#
Raw Normal View History

2025-06-12 18:00:06 +08:00
using dnlib.DotNet;
namespace HybridCLR.Editor.MethodBridge
{
public class CallNativeMethodSignatureInfo
{
public MethodSig MethodSig { get; set; }
2026-04-13 22:59:23 +08:00
public CallingConvention? Callvention { get; set; }
2025-06-12 18:00:06 +08:00
}
}