summaryrefslogtreecommitdiff
path: root/map.c
blob: 3313f1050c04ba6de86541dd12acc5d1d0ceb878 (plain) (blame)
1
2
3
4
5
#include "map.h"

int map_size(int w, int h) {
	return sizeof(Map) + w * h * sizeof(Map_Tile);
}