Files
project_misth/include/pch.h
T
2026-04-29 21:54:47 +01:00

15 lines
246 B
C++

#ifndef PCH_H
#define PCH_H
#include <SDL3/SDL.h>
#include <SDL3/SDL_events.h>
#include <SDL3_image/SDL_image.h>
#include <SDL3_ttf/SDL_ttf.h>
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <stdio.h>
#include <vector>
#endif