Zen 0.3.0
Loading...
Searching...
No Matches
zen_pch.h
1#pragma once
2
3// C++
4#include <algorithm>
5#include <cstdint>
6#include <fstream>
7#include <functional>
8#include <iostream>
9#include <map>
10#include <memory>
11#include <sstream>
12#include <string>
13#include <vector>
14
15// OpenGL
16#ifndef __ZEN_OPENGL_H
17 #define __ZEN_OPENGL_H
18
19 #include <glad/gl.h>
20
21#endif // !__ZEN_OPENGL_H
22
23// SDL
24#include <SDL3/SDL.h>
25#include <SDL3/SDL_error.h>
26#include <SDL3/SDL_events.h>
27#include <SDL3/SDL_hints.h>
28#include <SDL3/SDL_init.h>
29#include <SDL3/SDL_messagebox.h>
30#include <SDL3/SDL_scancode.h>
31#include <SDL3/SDL_video.h>
32
33// GLM
34#include <glm/glm.hpp>
35
36// ZEN
37#include <zen/log/ZEN_Log.h>