Hello! Thanks to creator for really great project!
Can anyone explain how to call method of globally declared variable?
For example there is script:
class MyClass
{
int b;
int myMethod(int a)
{
return a + b;
}
};
MyClass asObj1;
I want to call asObj1.myMethod from c++ side.