How do i define what override functions are created automatically when creating a subclass?

Actors come with BeginPlay and Tick. If your custom class Inherits from Actor, you’ll be able to override BeginPlay and Tick in your own class. You can’t use BeginPlay and Tick with any class because not every class in UE4 comes with a BeginPlay and Tick function.