summaryrefslogtreecommitdiffstats
path: root/src/game/client/pch.hh
blob: 98c5e52d17941ead5adf770a9180b8870415c2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef CLIENT_PCH_HH
#define CLIENT_PCH_HH 1
#pragma once

#include <shared/pch.hh>

#include <AL/al.h>
#include <AL/alc.h>
#include <AL/salad.h>

#include <dr_mp3.h>
#include <dr_wav.h>

#include <GLFW/glfw3.h>

#include <glad/gl.h>

#include <imgui.h>
#include <imgui_impl_glfw.h>
#include <imgui_impl_opengl3.h>
#include <imgui_stdlib.h>

#if defined(_WIN32)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif

#if defined(__unix__)
#include <dlfcn.h>
#endif

#endif // CLIENT_PCH_HH