Unable to find C++ Classes folder in my content browser

Hi,

Hope you’re doing well.

Can you share here the source folder hierarchy?

Check if it following the above example:

─Source
    └───<project_name>.Target.cs [FILE]
    └───<project_name>Editor.Target.cs [FILE]
    └───<project_name> [DIR]
        ├───<project_name>.Build.cs [FILE]
        ├───<project_name>.cpp [FILE]
        ├───<project_name>.h [FILE]
        ├───Public [DIR]
        ├───Private [DIR]

Public/Private are the place where your classes may be inside, in case you are not using those folders, that’s totally fine, the important is, your classes should be inside the Source/<project_name>/; And make sure remain files in the example above like .Target.cs, .Build.cs and so on exist.

Hope that helps - take care.