I have loaded an Object that uses a method written in
C++ that looks like this:
functionname(int *Name, float *name2, float *name3 etc...)
Now, when i call for this function, I cant just write:
Object.functionname(Var, Var, Var etc...)
This gives me a type mismatch.
I assume this is...