2024-09-21 16:59:55 +03:00
|
|
|
#pragma once
|
|
|
|
|
2024-09-23 15:42:27 +03:00
|
|
|
// Workaround for the intellisense for some reason not seeing C++23 features
|
|
|
|
#ifdef __INTELLISENSE__
|
|
|
|
#undef __cplusplus
|
|
|
|
#define __cplusplus 202302L
|
|
|
|
#endif
|
|
|
|
|
2024-09-21 16:59:55 +03:00
|
|
|
#include <cassert>
|
|
|
|
#include <disasm.h>
|
|
|
|
#include <file.h>
|
|
|
|
#include <filesystem>
|
|
|
|
#include <format>
|
|
|
|
#include <function.h>
|
|
|
|
#include <image.h>
|
|
|
|
#include <print>
|
|
|
|
#include <toml++/toml.hpp>
|
|
|
|
#include <unordered_map>
|
2024-09-21 21:47:34 +03:00
|
|
|
#include <unordered_set>
|
2024-09-21 16:59:55 +03:00
|
|
|
#include <xbox.h>
|
|
|
|
#include <xxhash.h>
|
2024-09-30 13:39:47 +06:00
|
|
|
#include "generated/ppc_context.gen.h"
|