I have a bunch of UObject child classes.
I want to call the constructor functions for each of them, in order to reset their variables to the default values.
Can I call the constructor functions in a generic way/without casting to each child class specifically?
I could create virtual functions that do the same thing as the constructor function, but I was hoping there would be a better way that.