Hi there,
I'm planning to work through the "Your First 2D Game" tutorial using GDNative C++ as an option, and just want to make sure that my understanding of how to create this project is correct.
The project setup page has a link to a 'dodge_assets_with_gdnative.zip' file that I downloaded. I also downloaded and generated bindings for the 3.4 version of the godot-cpp and godot-headers repositories. (If I should use a later version of godot-cpp and godot-headers, let me know--I received an error message during a compilation attempt related to a missing 'Godot.hpp' file, so I chose to use 3.4, which has this file, instead of a later version that instead had a 'godot.hpp file.)
I placed the godot-cpp folder within the same folder as the project folder in order to match the setup shown in this completed version of the GDNative C++ dodge_the_creeps project.
My main question is when I should try compiling this folder. My compilation attempts are producing the following error message:
src\entry.cpp(7): fatal error C1083: Cannot open include file: 'hud.hpp': No such file or directory
It looks like this file gets manually created by the user in the process of making the 'dodge the creeps' game, so my guess is that I'm not supposed to try to compile the project until I have created all the required .cpp and .hpp files. Is that correct, or is there a way to compile them earlier?
Thanks in advance for your help!