summaryrefslogtreecommitdiffstats
path: root/src/game/shared/pch.hh
blob: 13afb8098652d8dc3cf17599412726efb7469317 (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
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: pch.hh
// Description: Precompiled header

#ifndef SHARED_PCH_HH
#define SHARED_PCH_HH
#pragma once

#include <core/pch.hh> // inherit dependent includes from core.lib

#include <csignal>

#include <enet/enet.h>

#include <entt/entity/registry.hpp>
#include <entt/signal/dispatcher.hpp>

#include <fastnoiselite.h>

#include <miniz.h>

#include <parson.h>

#include <spdlog/sinks/basic_file_sink.h>
#include <spdlog/sinks/stdout_color_sinks.h>

#endif