blob: d3c09d7ac8e0d2880d51a875edd5b630b1cb3bc8 (
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
|
#ifndef SHARED_PCH_HH
#define SHARED_PCH_HH 1
#pragma once
#include <core/pch.hh> // inherit dependent includes from core.lib
#include <csignal>
#include <BS_thread_pool.hpp>
#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 // SHARED_PCH_HH
|