Update Documentation and remove duplicate includes caused by global headers

This commit is contained in:
2024-10-06 04:52:10 -05:00
parent 3e0206b581
commit ee0b68588c
4 changed files with 8 additions and 12 deletions

View File

@@ -8,6 +8,8 @@
#include <GLFW/glfw3.h>
namespace Global {
// Global variables and includes we are going to use almost everywhere, validation layers hook into everything, and you need to check if they are enabled first,
// so that's one obvious global, as well as the glfw includes!
extern const std::vector<const char*> validationLayers;
extern const bool enableValidationLayers;
}