2020-09-25 11:06:32 +00:00
|
|
|
#ifndef CREATURELIB_PRECOMPILED_HXX
|
|
|
|
#define CREATURELIB_PRECOMPILED_HXX
|
|
|
|
|
2020-09-25 11:33:57 +00:00
|
|
|
// std
|
2020-09-25 11:06:32 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cmath>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
|
|
|
#include <exception>
|
|
|
|
#include <memory>
|
|
|
|
#include <numeric>
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2020-09-30 16:53:18 +00:00
|
|
|
#include <type_traits>
|
2020-09-25 11:06:32 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <utility>
|
|
|
|
#include <variant>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
// Arbutils
|
|
|
|
#include <Arbutils/Assert.hpp>
|
|
|
|
#include <Arbutils/Collections/Dictionary.hpp>
|
|
|
|
#include <Arbutils/Collections/List.hpp>
|
|
|
|
#include <Arbutils/Enum.hpp>
|
|
|
|
#include <Arbutils/Exception.hpp>
|
2020-12-12 11:22:48 +00:00
|
|
|
#include <Arbutils/Memory/Memory.hpp>
|
2020-09-27 09:19:10 +00:00
|
|
|
#include <Arbutils/Precompiled.hxx>
|
2020-09-25 11:06:32 +00:00
|
|
|
#include <Arbutils/StringView.hpp>
|
|
|
|
|
2020-09-27 08:49:26 +00:00
|
|
|
// CreatureLib
|
|
|
|
#include "Defines.hpp"
|
|
|
|
|
2020-09-25 11:06:32 +00:00
|
|
|
#endif // CREATURELIB_PRECOMPILED_HXX
|