mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-01-25 03:34:15 +00:00
feat(core.hpp): add central import file
This commit is contained in:
24
inc/core/core.hpp
Normal file
24
inc/core/core.hpp
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#ifndef CORE_HPP
|
||||||
|
#define CORE_HPP
|
||||||
|
|
||||||
|
#include "glad/glad.h"
|
||||||
|
|
||||||
|
#include "GLFW/glfw3.h"
|
||||||
|
|
||||||
|
#include "glm/glm.hpp"
|
||||||
|
|
||||||
|
#include "stb_image.h"
|
||||||
|
|
||||||
|
#include "imgui.h"
|
||||||
|
#include "backends/imgui_impl_glfw.h"
|
||||||
|
#include "backends/imgui_impl_opengl3.h"
|
||||||
|
|
||||||
|
#include "logger.hpp"
|
||||||
|
#include "camera.hpp"
|
||||||
|
#include "vao.hpp"
|
||||||
|
#include "vbo.hpp"
|
||||||
|
#include "ebo.hpp"
|
||||||
|
#include "shader.hpp"
|
||||||
|
#include "time.hpp"
|
||||||
|
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user