C++ for constructor/destructor?

Can i use constructor and destructor in my game with Unreal engine ? Is it needing or not ?

Constructor You will find using it more than destructors. In constructors, you will be initializing variables or attaching components. But for destructors, you will need very little as you would not be manually allocating and deallocating memory.

1 Like

Thx for your answer FinalRockstar