mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-01-25 13:34:16 +00:00
24 lines
381 B
C++
24 lines
381 B
C++
#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 |