Loading...
Searching...
No Matches
7#ifndef TAZ_ENGINE_PCH_H
8#define TAZ_ENGINE_PCH_H
20#include <unordered_map>
31#include <unordered_set>
35#if defined(TAZ_PLATFORM_LINUX)
36#include <sys/socket.h>
40#define close_socket close
42#if defined(TAZ_PLATFORM_WINDOWS)
43#pragma comment(lib, "ws2_32.lib")
44using socket_t = SOCKET;
45#define close_socket closesocket
49#include <SDL2/SDL_mixer.h>
50#include <SDL2/SDL_image.h>
51#include <SDL2/SDL_ttf.h>
52#include <SDL2/SDL_rect.h>
56#include <imgui_impl_sdl2.h>
57#include <imgui_impl_opengl3.h>
59#include <implot_internal.h>
66#include <ImGuizmo/ImGuizmo.h>
69#include <ImGuiComboAutoselect/imgui_combo_autoselect.h>
72#include <pybind11/pybind11.h>
73#include <pybind11/embed.h>
75namespace py = pybind11;