I looked on the official marketplace, but there are no C++ game projects?
Why? (everything is Blueprints)
Just looking for a small C++ based 2D Unreal Engine sample project to learn from.
I have good knowledge of C++ and wish to use C++ with Unreal Engine 5.
However, even those games use some blueprints, because blueprints serve two roles:
They are flexible data files that let you configure the objects in your game in a data drive way
They let you configure behavior using a graph-flow-based scripting interface
You will typically build a bunch of blueprints are “prefabs” for various objects in your game, even if all the code is in C++. The blueprints would then derive from those C++ classes, and the C++ classes derive from (typically) AActor.