LibTMJ 1.4.0
A library for loading JSON Tiled maps
Loading...
Searching...
No Matches
map.h
Go to the documentation of this file.
1#ifndef LIBTMJ_MAP
2#define LIBTMJ_MAP
3
4#include <jansson.h>
5
6#include "tmj.h"
7
8Property* unpack_properties(json_t* properties);
9Object* unpack_objects(json_t* objects);
10void free_objects(Object* objects, size_t object_count);
11
12#endif
Object * unpack_objects(json_t *objects)
Definition map.c:256
void free_objects(Object *objects, size_t object_count)
Helper function to free Objects.
Definition map.c:422
Property * unpack_properties(json_t *properties)
Definition map.c:13
https://doc.mapeditor.org/en/stable/reference/json-map-format/#object
Definition tmj.h:89
https://doc.mapeditor.org/en/stable/reference/json-map-format/#property
Definition tmj.h:24
The libtmj API.