So, i've been looking at the docs and i found template types, but those seem to be for classes, are template functions supported in AngelScript and how would one create them, so far i have tried:
class Temporary{
void Method<T>() {}
void Method2<class T>() {}
}
but none of these work, what's the solution.