blob: 28e7b0c4822e6d5f4c79495191612ea232c1c3fe (
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 MAIN_HH_
#define MAIN_HH_
// -DCMAKE_BUILD_TYPE=Release disables the following (=Debug for enable):
// shared::world::chunk::get_block bounds checking
// collision debug information
// unknown packet printing
#include <algorithm>
#include <exception>
#include <execinfo.h>
#include <iostream>
#include <iterator>
#include <signal.h>
#include <string_view>
#include <thread>
#include <vector>
#include <boost/lexical_cast.hpp>
#include "client/client.hh"
#include "server/server.hh"
#include "server/shared.hh"
#endif
|