This commit is contained in:
2025-03-21 16:45:17 -05:00
parent ce79d8d4ff
commit b59d18471a
2 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
#ifndef RENDERER #ifndef RENDERER_H
#define RENDERER #define RENDERER_H
#include "Archimedes.h" #include "Archimedes.h"

View File

@@ -1,3 +1,6 @@
#ifndef WINDOW_H
#define WINDOW_H
#include "Archimedes.h" #include "Archimedes.h"
#include "Renderer/Renderer.h" #include "Renderer/Renderer.h"
#include "WindowGLFW/WindowGLFW.h" #include "WindowGLFW/WindowGLFW.h"
@@ -23,3 +26,5 @@ namespace Archimedes {
WindowImpl window; WindowImpl window;
}; };
} }
#endif