Browse Source

include fixes

fix/style
Martin Dørum 3 years ago
parent
commit
367880391e

+ 1
- 1
libswan/include/swan/Animation.h View File

@@ -1,6 +1,6 @@
#pragma once

#include <SDL2/SDL.h>
#include <SDL.h>

#include "common.h"
#include "Resource.h"

+ 1
- 1
libswan/include/swan/Mod.h View File

@@ -5,7 +5,7 @@
#include <vector>
#include <memory>
#include <type_traits>
#include <SDL2/SDL.h>
#include <SDL.h>

#include "Tile.h"
#include "Item.h"

+ 1
- 1
libswan/include/swan/Resource.h View File

@@ -1,6 +1,6 @@
#pragma once

#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdint.h>
#include <string>
#include <memory>

+ 1
- 1
libswan/include/swan/Win.h View File

@@ -3,7 +3,7 @@
#include "log.h"
#include "common.h"

#include <SDL2/SDL.h>
#include <SDL.h>
#include <optional>

namespace Swan {

+ 1
- 1
libswan/include/swan/gfxutil.h View File

@@ -1,4 +1,4 @@
#include <SDL2/SDL.h>
#include <SDL.h>
#include <ostream>

#include "util.h"

+ 1
- 1
libswan/src/Resource.cc View File

@@ -1,7 +1,7 @@
#include "Resource.h"

#include <stdio.h>
#include <SDL2/SDL_image.h>
#include <SDL_image.h>
#include <regex>
#include <cpptoml.h>
#include <string.h>

Loading…
Cancel
Save