Add windows specific changes

This commit is contained in:
2020-09-12 13:09:20 +02:00
parent dc819016a6
commit 99c5c7fb9e
3 changed files with 22 additions and 0 deletions
+6
View File
@@ -2,9 +2,15 @@
#ifndef SDLPP_HPP
#define SDLPP_HPP
#ifdef _WIN32
#include "SDL2/SDL.h"
#include "SDL2/SDL_image.h"
#include "SDL2/SDL_ttf.h"
#else
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <SDL2/SDL_ttf.h>
#endif // UNIX
#include <algorithm>
#include <cmath>
#include <iostream>