blob: d771163ab40fe235eae8405a69fd466323fd3f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include "Image_asset.h"
#include "map_asset.h"
#include "tiledMap.h"
#include <SDL_surface.h>
class ResourceConverter{
public:
ResourceConverter();
~ResourceConverter();
SDL_Surface* FromStringToImage(const Texture&);
TiledMap FromStringToMap(const Map&);
//TODO:
//convertrs a string map into a real map:
};
|