1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-09 09:20:44 +00:00

Forward declarations no longer necessary...

This commit is contained in:
Tim Sarbin 2019-02-20 15:39:54 -05:00
parent 5e65261dc1
commit 7fb694d59a
2 changed files with 1 additions and 3 deletions

View File

@ -2,10 +2,9 @@
#define OPENDIABLO2_WINDOW_H
#include <memory>
#include <GLFW/glfw3.h>
class GLFWwindow;
namespace OpenDiablo2 { namespace OS {
class D2Window {

View File

@ -1,6 +1,5 @@
#include <D2Window.h>
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
namespace OpenDiablo2 {
namespace OS {