Helios Engine
A modular ECS based data-oriented C++23 game engine framework
Loading...
Searching...
No Matches
pch.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <atomic>
5#include <chrono>
6#include <concepts>
7#include <cstddef>
8#include <cstdint>
9#include <cstdlib>
10#include <cstring>
11#include <filesystem>
12#include <fstream>
13#include <memory>
14#include <new>
15#include <optional>
16#include <ostream>
17#include <source_location>
18#include <span>
19#include <string>
20#include <string_view>
21#include <thread>
22#include <type_traits>
23#include <variant>
24
25#ifdef HELIOS_PROFILE_BUNDLE_TRACY
26#include <client/TracyProfiler.hpp>
27#include <client/TracyScoped.hpp>
28#include <client/TracyThread.hpp>
29#endif