aboutsummaryrefslogtreecommitdiff
path: root/src/main.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.hh')
-rw-r--r--src/main.hh25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main.hh b/src/main.hh
new file mode 100644
index 0000000..28e7b0c
--- /dev/null
+++ b/src/main.hh
@@ -0,0 +1,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