mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
21 lines
396 B
C++
21 lines
396 B
C++
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#define DEBUG_BREAK __debugbreak()
|
|
#else
|
|
#define DEBUG_BREAK
|
|
#endif
|
|
|
|
#include <cstdint>
|
|
#include <optional>
|
|
|
|
#include <TiltedCore/Buffer.hpp>
|
|
#include <TiltedCore/Filesystem.hpp>
|
|
#include <TiltedCore/Serialization.hpp>
|
|
#include <TiltedCore/Stl.hpp>
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
using namespace TiltedPhoques;
|
|
using TiltedPhoques::Serialization;
|