blob: 8607dd3f9a8c80ee3abbc7a51e4a52e15f990a08 (
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>
#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
|