You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When #29 is merged, the generator correctly generates code for custom event handlers based on delegates that have more or less than two arguments.
However, delegates with return values are still not supported.
Here's an example:
public delegate bool TeamAddedTestDelegate(Team team, bool test, int test2, float test3, byte test4);
public event TeamAddedTestDelegate TeamAddedTest;
When #29 is merged, the generator correctly generates code for custom event handlers based on delegates that have more or less than two arguments.
However, delegates with return values are still not supported.
Here's an example:
The generated block typedef looks like this:
The text was updated successfully, but these errors were encountered: