Improve ConfigLibs more

This commit is contained in:
2024-02-20 21:55:56 -05:00
parent 5312a86e7b
commit cd6c6216f1
3 changed files with 8 additions and 4 deletions

View File

@@ -1,7 +1,5 @@
//#pragma once
//TODO: Why is pragma once not working?!
#include "../dummy_default_config.hpp"
//TODO: Fix IntelliSense
struct CustomConfiguration : public DefaultConfiguration {
struct Test {
static constexpr const char* string() {

View File

@@ -0,0 +1,7 @@
#pragma once
#ifdef __INTELLISENSE__
// This provides a dummy struct so IntelliSense is happy
struct DefaultConfiguration {
};
#endif //! __INTELLISENSE__