Hello,
This is my first post on these forums, and I must say I really like the scripting engine so far
However I have encountered a problem I think no one has reported yet. When I'm taking a function handle of a function in a namespace, I get a compile error. I wrote this quick test code to demonstrate it:
namespace A
{
void func()
{
print("test");
}
}
funcdef void CALLBACK();
void main()
{
CALLBACK @callback = @A::func;
callback();
}
The error message i get from compiling this test is:
Can't implicitly convert from '<null handle>' to 'CALLBACK@&'.
Here I am assuming you would write @A::func to get the handle to the function func in namespace A.
Thanks for your help!
- mxg