Hello there!
One more question about constructors:
class Base
{
Base() { }
Base(int a) { }
}
class Derived : Base
{
}
Derived d(1);
Compiling this code gives errors:
No matching signatures to ‘Derived(const int)’
Candidates are: Derived@ Derived().
Is it true that Angelscript doesn't automatically generate constructors with arguments in derived class?
Thanks for answer in advance.