LibTMJ  1.0.0
A library for loading JSON Tiled maps
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 
8 Property* unpack_properties(json_t* properties);
9 Object* unpack_objects(json_t* objects);
10 void free_objects(Object* objects, size_t object_count);
11 
12 #endif
Object * unpack_objects(json_t *objects)
Definition: map.c:257
Property * unpack_properties(json_t *properties)
Definition: map.c:13
void free_objects(Object *objects, size_t object_count)
Helper function to free Objects.
Definition: map.c:423
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.