summaryrefslogtreecommitdiffstats
path: root/src/game/client/pch.hh
blob: b09dce567018fcc30a53bc523d37c835638698a9 (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
33
34
35
36
37
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: pch.hh
// Description: Precompiled header

#ifndef CLIENT_PCH_HH
#define CLIENT_PCH_HH
#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