diff options
Diffstat (limited to 'Editor/Graphics')
-rw-r--r-- | Editor/Graphics/Graphics.cpp | 3 | ||||
-rw-r--r-- | Editor/Graphics/Graphics.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Editor/Graphics/Graphics.cpp b/Editor/Graphics/Graphics.cpp new file mode 100644 index 0000000..af48d75 --- /dev/null +++ b/Editor/Graphics/Graphics.cpp @@ -0,0 +1,3 @@ +#include "Graphics.h"
+
+bool g_IsGLInitialized = false;
diff --git a/Editor/Graphics/Graphics.h b/Editor/Graphics/Graphics.h new file mode 100644 index 0000000..ad27ede --- /dev/null +++ b/Editor/Graphics/Graphics.h @@ -0,0 +1,3 @@ +#pragma once
+
+extern bool g_IsGLInitialized;
|