summaryrefslogtreecommitdiffstats
path: root/src/area.h
blob: a1b7e92f1c125e8e7f101d8b388fba1842e5be9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef AREA_H
#define AREA_H

#include <SDL.h>
#include "layer.h"
#include "viewport.h"
#include "resources/map.h"

struct area {
	SDL_Surface *map_layers[AREA_LAYERS_MAX];
};

struct area *area_new(struct map *map);
void render_area_to_viewport(struct area *area, struct viewport *vp);
void render_area_to_surface(struct area *area, SDL_Rect *arearect,
		SDL_Surface *dst, SDL_Rect *dstrect);

#endif