1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Reorder includes

This commit is contained in:
Mathieu Schroeter 2017-08-20 21:53:59 +02:00
parent 29a256f9f0
commit 98c9191a11
3 changed files with 9 additions and 6 deletions

View File

@ -18,9 +18,6 @@
* along with this program. If not, see http://gnu.org/licenses
*/
#include <SDL2/SDL_image.h>
#include <argagg/argagg.hpp>
#include <curl/curl.h>
#include <fstream>
#include <iostream>
#include <iterator>
@ -31,6 +28,10 @@
#include <thread>
#include <vector>
#include <SDL2/SDL_image.h>
#include <argagg/argagg.hpp>
#include <curl/curl.h>
#include "json/json.hpp"
#include "blupi.h"

View File

@ -18,8 +18,6 @@
* along with this program. If not, see http://gnu.org/licenses
*/
#include <SDL2/SDL_log.h>
#include <SDL2/SDL_mouse.h>
#include <algorithm>
#include <stdio.h>
#include <stdlib.h>
@ -32,6 +30,9 @@
#include <sys/stat.h>
#endif /*! _WIN32 */
#include <SDL2/SDL_log.h>
#include <SDL2/SDL_mouse.h>
#include "blupi.h"
#include "def.h"
#include "misc.h"

View File

@ -22,10 +22,11 @@
#include <stdlib.h>
#include <string.h>
#include "kitchensink/kitchensink.h"
#include "blupi.h"
#include "def.h"
#include "event.h"
#include "kitchensink/kitchensink.h"
#include "misc.h"
#include "movie.h"