You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
477 B
18 lines
477 B
namespace OverloadedFunctionPointers
|
|
{
|
|
#if UNITY_2021_2_OR_NEWER && UNITY_EDITOR
|
|
public unsafe struct Callable
|
|
{
|
|
public int Value;
|
|
|
|
private Callable(int x)
|
|
{
|
|
Value = x;
|
|
}
|
|
|
|
public static Callable Create<T1, T2>(delegate* unmanaged[Cdecl] < T1, T2, void > function) => new Callable(2);
|
|
public static Callable Create<T1, TRet>(delegate* unmanaged[Cdecl] < T1, TRet > function) => new Callable(3);
|
|
}
|
|
#endif
|
|
}
|