diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-12 18:05:18 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-12 18:05:18 +1100 |
| commit | 1cc08c51eb4b0f95c30c0a98ad1fc5ad3459b2df (patch) | |
| tree | 222dfcd07a1e40716127a347bbfd7119ce3d0984 /src/main.hh | |
initial commit
Diffstat (limited to 'src/main.hh')
| -rw-r--r-- | src/main.hh | 25 |
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 |
