diff options
| author | untodesu <kirill@untode.su> | 2025-06-29 22:24:42 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-29 22:24:42 +0500 |
| commit | 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 (patch) | |
| tree | b77f4e665da3dd235cdb01e7e6ea78c1c02ecf2e /src/core/pch.hh | |
| parent | f440914e1ae453768d09383f332bc7844e0a700e (diff) | |
| download | voxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.tar.bz2 voxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.zip | |
Move game sources into src subdirectory
Diffstat (limited to 'src/core/pch.hh')
| -rw-r--r-- | src/core/pch.hh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/core/pch.hh b/src/core/pch.hh new file mode 100644 index 0000000..795a287 --- /dev/null +++ b/src/core/pch.hh @@ -0,0 +1,50 @@ +#ifndef CORE_PCH_HH +#define CORE_PCH_HH 1 +#pragma once + +#include <cinttypes> +#include <cmath> +#include <cstdarg> +#include <cstddef> +#include <cstdint> + +#include <algorithm> +#include <chrono> +#include <concepts> +#include <filesystem> +#include <format> +#include <iostream> +#include <limits> +#include <mutex> +#include <random> +#include <sstream> +#include <stdexcept> +#include <thread> +#include <type_traits> +#include <unordered_map> +#include <unordered_set> +#include <vector> + +#include <emhash/hash_table8.hpp> + +#include <enet/enet.h> + +#include <glm/fwd.hpp> + +#include <glm/mat4x4.hpp> +#include <glm/vec2.hpp> +#include <glm/vec3.hpp> +#include <glm/vec4.hpp> + +#include <glm/gtc/matrix_transform.hpp> +#include <glm/gtc/quaternion.hpp> +#include <glm/gtc/type_ptr.hpp> + +#include <physfs.h> + +#include <spdlog/spdlog.h> + +#include <stb_image.h> +#include <stb_image_write.h> + +#endif /* CORE_PCH_HH */ |
