Description
Is there a way to add a function return type? Like when defining a Virtual Table you get a list of functions. On code generator for C++ it all comes out to virtual void FunctionN();
. This does not compile, because it is looking for a definition.
For building a class it would be needing to define it as virtual void FunctionN() { };
, and for a int return type would be virtual int FunctionN() { return -1; };
(-1 just for the sake as placeholder).
The same goes into parameters: users should be able to type in the parameters (even for classes that does not exist in ReClass) so on code generator does not clear all our changes after the C&P to our SDK (think on 100+ classes and they are not always on the same order, so to re-add manually a bunch of virtual methods is kind of damned).
Thanks for the attention.