Skip to content

Latest commit

 

History

History
executable file
·
46 lines (31 loc) · 782 Bytes

README.md

File metadata and controls

executable file
·
46 lines (31 loc) · 782 Bytes

TMX C Loader


About

A portable C library to load tiled maps in your games.

Dependencies

This project depends on Zlib and LibXml2.

Compiling

This project uses cmake as a build system builder. You can either use cmake, ccmake or cmake-gui.

Example :

mkdir build
cd build
cmake ..
make && make install

Usage

#include <tmx.h>

int main(void) {
  tmx_map *map = tmx_load("path/map.tmx");
  if (!map) {
    tmx_perror("tmx_load");
    return 1;
  }
  /* ... */
  tmx_map_free(map);
  return 0;
}

See the dumper example (examples/dumper/dumper.c) for an in-depth usage of TMX.

Help

See the Wiki.